pub struct UpdateChild {
pub email: Option<String>,
pub first_name: Option<String>,
pub last_name: Option<String>,
pub company_name: Option<String>,
pub password: Option<String>,
}Fields§
§email: Option<String>New Email address to update the child account
first_name: Option<String>New First name to use to update the child account
last_name: Option<String>New Last name to use to update the child account
company_name: Option<String>New Company name to use to update the child account
password: Option<String>New password for the child account to login
Implementations§
Source§impl UpdateChild
impl UpdateChild
pub fn new() -> UpdateChild
Trait Implementations§
Source§impl Clone for UpdateChild
impl Clone for UpdateChild
Source§fn clone(&self) -> UpdateChild
fn clone(&self) -> UpdateChild
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 UpdateChild
impl Debug for UpdateChild
Source§impl Default for UpdateChild
impl Default for UpdateChild
Source§fn default() -> UpdateChild
fn default() -> UpdateChild
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateChild
impl<'de> Deserialize<'de> for UpdateChild
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 UpdateChild
impl PartialEq for UpdateChild
Source§impl Serialize for UpdateChild
impl Serialize for UpdateChild
impl StructuralPartialEq for UpdateChild
Auto Trait Implementations§
impl Freeze for UpdateChild
impl RefUnwindSafe for UpdateChild
impl Send for UpdateChild
impl Sync for UpdateChild
impl Unpin for UpdateChild
impl UnwindSafe for UpdateChild
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