pub struct AdminCreateCustomerRequest {
pub name: String,
pub plan: Option<String>,
}Fields§
§name: String§plan: Option<String>Trait Implementations§
Source§impl Clone for AdminCreateCustomerRequest
impl Clone for AdminCreateCustomerRequest
Source§fn clone(&self) -> AdminCreateCustomerRequest
fn clone(&self) -> AdminCreateCustomerRequest
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 AdminCreateCustomerRequest
impl Debug for AdminCreateCustomerRequest
Source§impl<'de> Deserialize<'de> for AdminCreateCustomerRequest
impl<'de> Deserialize<'de> for AdminCreateCustomerRequest
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
impl Eq for AdminCreateCustomerRequest
impl StructuralPartialEq for AdminCreateCustomerRequest
Auto Trait Implementations§
impl Freeze for AdminCreateCustomerRequest
impl RefUnwindSafe for AdminCreateCustomerRequest
impl Send for AdminCreateCustomerRequest
impl Sync for AdminCreateCustomerRequest
impl Unpin for AdminCreateCustomerRequest
impl UnwindSafe for AdminCreateCustomerRequest
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