pub struct UpdateCompanyApplicationRequest {
pub name: Option<String>,
pub address: Option<Address>,
pub entity: Option<EntityUpdateInfo>,
}Expand description
Request to update a company application
Fields§
§name: Option<String>§address: Option<Address>§entity: Option<EntityUpdateInfo>Trait Implementations§
Source§impl Clone for UpdateCompanyApplicationRequest
impl Clone for UpdateCompanyApplicationRequest
Source§fn clone(&self) -> UpdateCompanyApplicationRequest
fn clone(&self) -> UpdateCompanyApplicationRequest
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<'de> Deserialize<'de> for UpdateCompanyApplicationRequest
impl<'de> Deserialize<'de> for UpdateCompanyApplicationRequest
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 UpdateCompanyApplicationRequest
impl RefUnwindSafe for UpdateCompanyApplicationRequest
impl Send for UpdateCompanyApplicationRequest
impl Sync for UpdateCompanyApplicationRequest
impl Unpin for UpdateCompanyApplicationRequest
impl UnwindSafe for UpdateCompanyApplicationRequest
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