pub struct LeaveOfficeNotification {
pub office_id: String,
pub computer: Option<String>,
pub agent: Option<String>,
}Expand description
离开办公室通知
Fields§
§office_id: String§computer: Option<String>§agent: Option<String>Trait Implementations§
Source§impl Clone for LeaveOfficeNotification
impl Clone for LeaveOfficeNotification
Source§fn clone(&self) -> LeaveOfficeNotification
fn clone(&self) -> LeaveOfficeNotification
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 LeaveOfficeNotification
impl Debug for LeaveOfficeNotification
Source§impl<'de> Deserialize<'de> for LeaveOfficeNotification
impl<'de> Deserialize<'de> for LeaveOfficeNotification
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 LeaveOfficeNotification
impl RefUnwindSafe for LeaveOfficeNotification
impl Send for LeaveOfficeNotification
impl Sync for LeaveOfficeNotification
impl Unpin for LeaveOfficeNotification
impl UnsafeUnpin for LeaveOfficeNotification
impl UnwindSafe for LeaveOfficeNotification
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