pub struct LiveSiteEventLogAttachment {
pub author: Option<LiveSiteEventAuthor>,
pub creation_date_time: Option<OffsetDateTime>,
pub display_name: Option<String>,
pub event_id: Option<i64>,
pub file_id: Option<i32>,
pub file_name: Option<String>,
pub scope_type: Option<ScopeType>,
}
Expand description
Fields§
§creation_date_time: Option<OffsetDateTime>
§display_name: Option<String>
§event_id: Option<i64>
§file_id: Option<i32>
§file_name: Option<String>
§scope_type: Option<ScopeType>
Implementations§
Trait Implementations§
source§impl Clone for LiveSiteEventLogAttachment
impl Clone for LiveSiteEventLogAttachment
source§fn clone(&self) -> LiveSiteEventLogAttachment
fn clone(&self) -> LiveSiteEventLogAttachment
Returns a copy 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 LiveSiteEventLogAttachment
impl Debug for LiveSiteEventLogAttachment
source§impl Default for LiveSiteEventLogAttachment
impl Default for LiveSiteEventLogAttachment
source§fn default() -> LiveSiteEventLogAttachment
fn default() -> LiveSiteEventLogAttachment
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LiveSiteEventLogAttachment
impl<'de> Deserialize<'de> for LiveSiteEventLogAttachment
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 LiveSiteEventLogAttachment
impl PartialEq for LiveSiteEventLogAttachment
source§fn eq(&self, other: &LiveSiteEventLogAttachment) -> bool
fn eq(&self, other: &LiveSiteEventLogAttachment) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LiveSiteEventLogAttachment
Auto Trait Implementations§
impl RefUnwindSafe for LiveSiteEventLogAttachment
impl Send for LiveSiteEventLogAttachment
impl Sync for LiveSiteEventLogAttachment
impl Unpin for LiveSiteEventLogAttachment
impl UnwindSafe for LiveSiteEventLogAttachment
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