pub enum BackendLogLevel {
Error,
Warn,
Info,
Debug,
}Expand description
Log verbosity for the agent backend runtime.
Controls the logging level of the underlying agent runtime. This is intentionally backend-agnostic — consumers should not need to know the implementation details of the runtime layer.
Variants§
Error
Errors only.
Warn
Warnings and errors (default — matches upstream SDK behavior).
Info
Informational messages (verbose — includes raw protocol traffic).
Debug
Full debug output.
Implementations§
Trait Implementations§
Source§impl Clone for BackendLogLevel
impl Clone for BackendLogLevel
Source§fn clone(&self) -> BackendLogLevel
fn clone(&self) -> BackendLogLevel
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 moreimpl Copy for BackendLogLevel
Source§impl Debug for BackendLogLevel
impl Debug for BackendLogLevel
Source§impl Default for BackendLogLevel
impl Default for BackendLogLevel
Source§fn default() -> BackendLogLevel
fn default() -> BackendLogLevel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BackendLogLevel
impl<'de> Deserialize<'de> for BackendLogLevel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for BackendLogLevel
impl Display for BackendLogLevel
impl Eq for BackendLogLevel
Source§impl PartialEq for BackendLogLevel
impl PartialEq for BackendLogLevel
Source§impl Serialize for BackendLogLevel
impl Serialize for BackendLogLevel
impl StructuralPartialEq for BackendLogLevel
Auto Trait Implementations§
impl Freeze for BackendLogLevel
impl RefUnwindSafe for BackendLogLevel
impl Send for BackendLogLevel
impl Sync for BackendLogLevel
impl Unpin for BackendLogLevel
impl UnsafeUnpin for BackendLogLevel
impl UnwindSafe for BackendLogLevel
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