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