pub struct UpdateLimitResponse {
pub limit: Option<SubAccountLimit>,
}Expand description
UpdateLimitResponse
JSON schema
{
"type": "object",
"properties": {
"limit": {
"$ref": "#/components/schemas/SubAccountLimit"
}
}
}Fields§
§limit: Option<SubAccountLimit>Trait Implementations§
Source§impl Clone for UpdateLimitResponse
impl Clone for UpdateLimitResponse
Source§fn clone(&self) -> UpdateLimitResponse
fn clone(&self) -> UpdateLimitResponse
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 UpdateLimitResponse
impl Debug for UpdateLimitResponse
Source§impl Default for UpdateLimitResponse
impl Default for UpdateLimitResponse
Source§impl<'de> Deserialize<'de> for UpdateLimitResponse
impl<'de> Deserialize<'de> for UpdateLimitResponse
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 UpdateLimitResponse
impl RefUnwindSafe for UpdateLimitResponse
impl Send for UpdateLimitResponse
impl Sync for UpdateLimitResponse
impl Unpin for UpdateLimitResponse
impl UnsafeUnpin for UpdateLimitResponse
impl UnwindSafe for UpdateLimitResponse
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