pub struct LogStatusNotificationRequest {
pub custom_data: Option<CustomData>,
pub request_id: Option<i64>,
pub status: UploadLogStatusEnum,
pub status_info: Option<StatusInfo>,
}Fields§
§custom_data: Option<CustomData>§request_id: Option<i64>The request id that was provided in GetLogRequest that started this log upload. This field is mandatory, unless the message was triggered by a TriggerMessageRequest AND there is no log upload ongoing.
status: UploadLogStatusEnum§status_info: Option<StatusInfo>Trait Implementations§
Source§impl Clone for LogStatusNotificationRequest
impl Clone for LogStatusNotificationRequest
Source§fn clone(&self) -> LogStatusNotificationRequest
fn clone(&self) -> LogStatusNotificationRequest
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 LogStatusNotificationRequest
impl Debug for LogStatusNotificationRequest
impl Eq for LogStatusNotificationRequest
impl StructuralPartialEq for LogStatusNotificationRequest
Auto Trait Implementations§
impl Freeze for LogStatusNotificationRequest
impl RefUnwindSafe for LogStatusNotificationRequest
impl Send for LogStatusNotificationRequest
impl Sync for LogStatusNotificationRequest
impl Unpin for LogStatusNotificationRequest
impl UnsafeUnpin for LogStatusNotificationRequest
impl UnwindSafe for LogStatusNotificationRequest
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