pub struct GetOnrampUserLimitsResponse {
pub limits: Vec<OnrampUserLimit>,
}Expand description
GetOnrampUserLimitsResponse
JSON schema
{
"type": "object",
"required": [
"limits"
],
"properties": {
"limits": {
"description": "The list of limits applicable to the user.",
"type": "array",
"items": {
"$ref": "#/components/schemas/OnrampUserLimit"
}
}
}
}Fields§
§limits: Vec<OnrampUserLimit>The list of limits applicable to the user.
Implementations§
Trait Implementations§
Source§impl Clone for GetOnrampUserLimitsResponse
impl Clone for GetOnrampUserLimitsResponse
Source§fn clone(&self) -> GetOnrampUserLimitsResponse
fn clone(&self) -> GetOnrampUserLimitsResponse
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 GetOnrampUserLimitsResponse
impl Debug for GetOnrampUserLimitsResponse
Source§impl<'de> Deserialize<'de> for GetOnrampUserLimitsResponse
impl<'de> Deserialize<'de> for GetOnrampUserLimitsResponse
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 From<&GetOnrampUserLimitsResponse> for GetOnrampUserLimitsResponse
impl From<&GetOnrampUserLimitsResponse> for GetOnrampUserLimitsResponse
Source§fn from(value: &GetOnrampUserLimitsResponse) -> Self
fn from(value: &GetOnrampUserLimitsResponse) -> Self
Converts to this type from the input type.
Source§impl From<GetOnrampUserLimitsResponse> for GetOnrampUserLimitsResponse
impl From<GetOnrampUserLimitsResponse> for GetOnrampUserLimitsResponse
Source§fn from(value: GetOnrampUserLimitsResponse) -> Self
fn from(value: GetOnrampUserLimitsResponse) -> Self
Converts to this type from the input type.
Source§impl TryFrom<GetOnrampUserLimitsResponse> for GetOnrampUserLimitsResponse
impl TryFrom<GetOnrampUserLimitsResponse> for GetOnrampUserLimitsResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: GetOnrampUserLimitsResponse) -> Result<Self, ConversionError>
fn try_from(value: GetOnrampUserLimitsResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for GetOnrampUserLimitsResponse
impl RefUnwindSafe for GetOnrampUserLimitsResponse
impl Send for GetOnrampUserLimitsResponse
impl Sync for GetOnrampUserLimitsResponse
impl Unpin for GetOnrampUserLimitsResponse
impl UnsafeUnpin for GetOnrampUserLimitsResponse
impl UnwindSafe for GetOnrampUserLimitsResponse
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