pub struct CoreOutputConfig {
pub format: Option<String>,
}Expand description
[core.output] (obligation 9). P3/P4: Config.event_sink is code-only
(“Callbacks/handlers are code-only”, config.rs); this is its declarative
equivalent, not yet wired to anything.
Fields§
§format: Option<String>text | json (JSONL event stream over EventSink).
Trait Implementations§
Source§impl Clone for CoreOutputConfig
impl Clone for CoreOutputConfig
Source§fn clone(&self) -> CoreOutputConfig
fn clone(&self) -> CoreOutputConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CoreOutputConfig
impl Debug for CoreOutputConfig
Source§impl Default for CoreOutputConfig
impl Default for CoreOutputConfig
Source§fn default() -> CoreOutputConfig
fn default() -> CoreOutputConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CoreOutputConfig
impl<'de> Deserialize<'de> for CoreOutputConfig
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CoreOutputConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CoreOutputConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CoreOutputConfig
impl PartialEq for CoreOutputConfig
Source§impl Serialize for CoreOutputConfig
impl Serialize for CoreOutputConfig
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for CoreOutputConfig
Auto Trait Implementations§
impl Freeze for CoreOutputConfig
impl RefUnwindSafe for CoreOutputConfig
impl Send for CoreOutputConfig
impl Sync for CoreOutputConfig
impl Unpin for CoreOutputConfig
impl UnsafeUnpin for CoreOutputConfig
impl UnwindSafe for CoreOutputConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more