pub struct LogStream {
pub name: String,
pub arn: String,
pub creation_time: i64,
pub first_event_timestamp: Option<i64>,
pub last_event_timestamp: Option<i64>,
pub last_ingestion_time: Option<i64>,
pub upload_sequence_token: String,
pub events: Vec<LogEvent>,
}Fields§
§name: String§arn: String§creation_time: i64§first_event_timestamp: Option<i64>§last_event_timestamp: Option<i64>§last_ingestion_time: Option<i64>§upload_sequence_token: String§events: Vec<LogEvent>Trait Implementations§
Source§impl<'de> Deserialize<'de> for LogStream
impl<'de> Deserialize<'de> for LogStream
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 LogStream
impl RefUnwindSafe for LogStream
impl Send for LogStream
impl Sync for LogStream
impl Unpin for LogStream
impl UnsafeUnpin for LogStream
impl UnwindSafe for LogStream
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