pub struct CreateLimitResponse {
pub limit: Option<SubAccountLimit>,
}Expand description
CreateLimitResponse
JSON schema
{
"type": "object",
"properties": {
"limit": {
"$ref": "#/components/schemas/SubAccountLimit"
}
}
}Fields§
§limit: Option<SubAccountLimit>Trait Implementations§
Source§impl Clone for CreateLimitResponse
impl Clone for CreateLimitResponse
Source§fn clone(&self) -> CreateLimitResponse
fn clone(&self) -> CreateLimitResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateLimitResponse
impl Debug for CreateLimitResponse
Source§impl Default for CreateLimitResponse
impl Default for CreateLimitResponse
Source§impl<'de> Deserialize<'de> for CreateLimitResponse
impl<'de> Deserialize<'de> for CreateLimitResponse
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 CreateLimitResponse
impl RefUnwindSafe for CreateLimitResponse
impl Send for CreateLimitResponse
impl Sync for CreateLimitResponse
impl Unpin for CreateLimitResponse
impl UnsafeUnpin for CreateLimitResponse
impl UnwindSafe for CreateLimitResponse
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