pub struct MountTypesResponse {
pub mount_types: Vec<String>,
}Expand description
MountTypesResponse
JSON schema
{
"type": "object",
"required": [
"mountTypes"
],
"properties": {
"mountTypes": {
"type": "array",
"items": {
"type": "string"
}
}
}
}Fields§
§mount_types: Vec<String>Trait Implementations§
Source§impl Clone for MountTypesResponse
impl Clone for MountTypesResponse
Source§fn clone(&self) -> MountTypesResponse
fn clone(&self) -> MountTypesResponse
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 MountTypesResponse
impl Debug for MountTypesResponse
Source§impl<'de> Deserialize<'de> for MountTypesResponse
impl<'de> Deserialize<'de> for MountTypesResponse
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<&MountTypesResponse> for MountTypesResponse
impl From<&MountTypesResponse> for MountTypesResponse
Source§fn from(value: &MountTypesResponse) -> Self
fn from(value: &MountTypesResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MountTypesResponse
impl RefUnwindSafe for MountTypesResponse
impl Send for MountTypesResponse
impl Sync for MountTypesResponse
impl Unpin for MountTypesResponse
impl UnwindSafe for MountTypesResponse
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