Function open_intent_sink
pub fn open_intent_sink(
intent: &KeyLogIntent,
) -> Result<Option<Arc<dyn KeyLogSink>>, Box<dyn Error + Send + Sync>>Available on crate feature
net only.Expand description
Resolve a KeyLogIntent into a concrete sink, opening files
as needed.
KeyLogIntent::Disabledand an unsetSSLKEYLOGFILEonKeyLogIntent::Environmentboth returnOk(None).KeyLogIntent::Fileopens the path viaFileKeyLogSink::try_open(cached + dedup’d by path).KeyLogIntent::Customreturns the supplied sink unchanged.