pub struct PresenceView {
pub location: LocationId,
pub state: PresenceState,
pub error: Option<String>,
pub synced_at: Option<DateTime<Utc>>,
pub attempt: u32,
}Expand description
特定locationでのファイルの存在状況ビュー。
Fields§
§location: LocationId§state: PresenceState§error: Option<String>§synced_at: Option<DateTime<Utc>>§attempt: u32Trait Implementations§
Source§impl Clone for PresenceView
impl Clone for PresenceView
Source§fn clone(&self) -> PresenceView
fn clone(&self) -> PresenceView
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 PresenceView
impl Debug for PresenceView
Source§impl<'de> Deserialize<'de> for PresenceView
impl<'de> Deserialize<'de> for PresenceView
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 PresenceView
impl RefUnwindSafe for PresenceView
impl Send for PresenceView
impl Sync for PresenceView
impl Unpin for PresenceView
impl UnsafeUnpin for PresenceView
impl UnwindSafe for PresenceView
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