pub struct RuntimeLogChunk {
pub schema: String,
pub cursor: String,
pub sequence: u64,
pub observed_at_ms: u64,
pub stream: RuntimeLogStream,
pub data: String,
}Fields§
§schema: String§cursor: String§sequence: u64§observed_at_ms: u64§stream: RuntimeLogStream§data: StringImplementations§
Trait Implementations§
Source§impl Clone for RuntimeLogChunk
impl Clone for RuntimeLogChunk
Source§fn clone(&self) -> RuntimeLogChunk
fn clone(&self) -> RuntimeLogChunk
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 RuntimeLogChunk
impl Debug for RuntimeLogChunk
Source§impl<'de> Deserialize<'de> for RuntimeLogChunk
impl<'de> Deserialize<'de> for RuntimeLogChunk
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
impl Eq for RuntimeLogChunk
Source§impl PartialEq for RuntimeLogChunk
impl PartialEq for RuntimeLogChunk
Source§impl Serialize for RuntimeLogChunk
impl Serialize for RuntimeLogChunk
impl StructuralPartialEq for RuntimeLogChunk
Auto Trait Implementations§
impl Freeze for RuntimeLogChunk
impl RefUnwindSafe for RuntimeLogChunk
impl Send for RuntimeLogChunk
impl Sync for RuntimeLogChunk
impl Unpin for RuntimeLogChunk
impl UnsafeUnpin for RuntimeLogChunk
impl UnwindSafe for RuntimeLogChunk
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