pub struct CompanyNew {
pub id: u32,
}
Expand description
Notification of a new company.
Fields§
§id: u32
ID of the new company.
Trait Implementations§
Source§impl Clone for CompanyNew
impl Clone for CompanyNew
Source§fn clone(&self) -> CompanyNew
fn clone(&self) -> CompanyNew
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 CompanyNew
impl Debug for CompanyNew
Source§impl<'de> Deserialize<'de> for CompanyNew
impl<'de> Deserialize<'de> for CompanyNew
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 CompanyNew
impl PartialEq for CompanyNew
Source§impl Serialize for CompanyNew
impl Serialize for CompanyNew
impl Copy for CompanyNew
impl Eq for CompanyNew
impl StructuralPartialEq for CompanyNew
Auto Trait Implementations§
impl Freeze for CompanyNew
impl RefUnwindSafe for CompanyNew
impl Send for CompanyNew
impl Sync for CompanyNew
impl Unpin for CompanyNew
impl UnwindSafe for CompanyNew
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