pub struct SessionCapture {
pub schema: String,
pub event_schema: String,
pub status: SessionCaptureStatus,
pub event_count: u64,
pub entry_count: u64,
pub last_event_seq: u64,
pub failure: Option<SessionCaptureFailure>,
}Fields§
§schema: String§event_schema: String§status: SessionCaptureStatus§event_count: u64§entry_count: u64§last_event_seq: u64§failure: Option<SessionCaptureFailure>Trait Implementations§
Source§impl Clone for SessionCapture
impl Clone for SessionCapture
Source§fn clone(&self) -> SessionCapture
fn clone(&self) -> SessionCapture
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 SessionCapture
impl Debug for SessionCapture
Source§impl<'de> Deserialize<'de> for SessionCapture
impl<'de> Deserialize<'de> for SessionCapture
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 PartialEq for SessionCapture
impl PartialEq for SessionCapture
Source§impl Serialize for SessionCapture
impl Serialize for SessionCapture
impl StructuralPartialEq for SessionCapture
Auto Trait Implementations§
impl Freeze for SessionCapture
impl RefUnwindSafe for SessionCapture
impl Send for SessionCapture
impl Sync for SessionCapture
impl Unpin for SessionCapture
impl UnsafeUnpin for SessionCapture
impl UnwindSafe for SessionCapture
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more