pub struct MountListmountsResponseMountPointsItem {
pub fs: String,
pub mount_point: String,
pub mounted_on: DateTime<Utc>,
}Expand description
MountListmountsResponseMountPointsItem
JSON schema
{
"type": "object",
"required": [
"Fs",
"MountPoint",
"MountedOn"
],
"properties": {
"Fs": {
"type": "string"
},
"MountPoint": {
"type": "string"
},
"MountedOn": {
"type": "string",
"format": "date-time"
}
},
"additionalProperties": false
}Fields§
§fs: String§mount_point: String§mounted_on: DateTime<Utc>Trait Implementations§
Source§impl Clone for MountListmountsResponseMountPointsItem
impl Clone for MountListmountsResponseMountPointsItem
Source§fn clone(&self) -> MountListmountsResponseMountPointsItem
fn clone(&self) -> MountListmountsResponseMountPointsItem
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<'de> Deserialize<'de> for MountListmountsResponseMountPointsItem
impl<'de> Deserialize<'de> for MountListmountsResponseMountPointsItem
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<&MountListmountsResponseMountPointsItem> for MountListmountsResponseMountPointsItem
impl From<&MountListmountsResponseMountPointsItem> for MountListmountsResponseMountPointsItem
Source§fn from(value: &MountListmountsResponseMountPointsItem) -> Self
fn from(value: &MountListmountsResponseMountPointsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MountListmountsResponseMountPointsItem
impl RefUnwindSafe for MountListmountsResponseMountPointsItem
impl Send for MountListmountsResponseMountPointsItem
impl Sync for MountListmountsResponseMountPointsItem
impl Unpin for MountListmountsResponseMountPointsItem
impl UnwindSafe for MountListmountsResponseMountPointsItem
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