pub struct SessionLogSupport {
pub supported: bool,
pub native: bool,
pub completeness: Option<String>,
}Expand description
Session log support with completeness level.
Fields§
§supported: bool§native: bool§completeness: Option<String>Completeness level: “full”, “partial”, or absent when unsupported.
Implementations§
Trait Implementations§
Source§impl Clone for SessionLogSupport
impl Clone for SessionLogSupport
Source§fn clone(&self) -> SessionLogSupport
fn clone(&self) -> SessionLogSupport
Returns a duplicate of the value. Read more
1.0.0 · 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 SessionLogSupport
impl Debug for SessionLogSupport
Source§impl<'de> Deserialize<'de> for SessionLogSupport
impl<'de> Deserialize<'de> for SessionLogSupport
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
Auto Trait Implementations§
impl Freeze for SessionLogSupport
impl RefUnwindSafe for SessionLogSupport
impl Send for SessionLogSupport
impl Sync for SessionLogSupport
impl Unpin for SessionLogSupport
impl UnsafeUnpin for SessionLogSupport
impl UnwindSafe for SessionLogSupport
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