pub struct AccountPatchInput {
pub id: String,
pub sequence: i64,
pub name: Option<String>,
pub description: Option<String>,
pub display_id: Option<String>,
}Expand description
Input for patching an account.
Fields§
§id: String§sequence: i64§name: Option<String>§description: Option<String>§display_id: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for AccountPatchInput
impl Clone for AccountPatchInput
Source§fn clone(&self) -> AccountPatchInput
fn clone(&self) -> AccountPatchInput
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 AccountPatchInput
impl Debug for AccountPatchInput
Auto Trait Implementations§
impl Freeze for AccountPatchInput
impl RefUnwindSafe for AccountPatchInput
impl Send for AccountPatchInput
impl Sync for AccountPatchInput
impl Unpin for AccountPatchInput
impl UnsafeUnpin for AccountPatchInput
impl UnwindSafe for AccountPatchInput
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