pub struct EnterOfficeNotification {
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 EnterOfficeNotification
impl Clone for EnterOfficeNotification
Source§fn clone(&self) -> EnterOfficeNotification
fn clone(&self) -> EnterOfficeNotification
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 EnterOfficeNotification
impl Debug for EnterOfficeNotification
Source§impl<'de> Deserialize<'de> for EnterOfficeNotification
impl<'de> Deserialize<'de> for EnterOfficeNotification
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 EnterOfficeNotification
impl RefUnwindSafe for EnterOfficeNotification
impl Send for EnterOfficeNotification
impl Sync for EnterOfficeNotification
impl Unpin for EnterOfficeNotification
impl UnsafeUnpin for EnterOfficeNotification
impl UnwindSafe for EnterOfficeNotification
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