pub struct GetLogRecordsResponse {
pub data: Option<Vec<LogRecord>>,
pub meta: Option<Box<GetLogRecordsResponseMeta>>,
}
Fields§
§data: Option<Vec<LogRecord>>
§meta: Option<Box<GetLogRecordsResponseMeta>>
Implementations§
Source§impl GetLogRecordsResponse
impl GetLogRecordsResponse
pub fn new() -> GetLogRecordsResponse
Trait Implementations§
Source§impl Clone for GetLogRecordsResponse
impl Clone for GetLogRecordsResponse
Source§fn clone(&self) -> GetLogRecordsResponse
fn clone(&self) -> GetLogRecordsResponse
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 GetLogRecordsResponse
impl Debug for GetLogRecordsResponse
Source§impl Default for GetLogRecordsResponse
impl Default for GetLogRecordsResponse
Source§fn default() -> GetLogRecordsResponse
fn default() -> GetLogRecordsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetLogRecordsResponse
impl<'de> Deserialize<'de> for GetLogRecordsResponse
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 GetLogRecordsResponse
impl PartialEq for GetLogRecordsResponse
Source§impl Serialize for GetLogRecordsResponse
impl Serialize for GetLogRecordsResponse
impl StructuralPartialEq for GetLogRecordsResponse
Auto Trait Implementations§
impl Freeze for GetLogRecordsResponse
impl RefUnwindSafe for GetLogRecordsResponse
impl Send for GetLogRecordsResponse
impl Sync for GetLogRecordsResponse
impl Unpin for GetLogRecordsResponse
impl UnwindSafe for GetLogRecordsResponse
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