pub struct GetLogResponse {
pub custom_data: Option<CustomData>,
pub filename: Option<String<255usize>>,
pub status: LogStatusEnum,
pub status_info: Option<StatusInfo>,
}Fields§
§custom_data: Option<CustomData>§filename: Option<String<255usize>>This contains the name of the log file that will be uploaded. This field is not present when no logging information is available.
status: LogStatusEnum§status_info: Option<StatusInfo>Trait Implementations§
Source§impl Clone for GetLogResponse
impl Clone for GetLogResponse
Source§fn clone(&self) -> GetLogResponse
fn clone(&self) -> GetLogResponse
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 GetLogResponse
impl Debug for GetLogResponse
impl Eq for GetLogResponse
Source§impl PartialEq for GetLogResponse
impl PartialEq for GetLogResponse
impl StructuralPartialEq for GetLogResponse
Auto Trait Implementations§
impl Freeze for GetLogResponse
impl RefUnwindSafe for GetLogResponse
impl Send for GetLogResponse
impl Sync for GetLogResponse
impl Unpin for GetLogResponse
impl UnsafeUnpin for GetLogResponse
impl UnwindSafe for GetLogResponse
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