pub struct DescribeFileSystemsResponse {
pub file_systems: Option<Vec<FileSystemDescription>>,
pub marker: Option<String>,
pub next_marker: Option<String>,
}Fields§
§file_systems: Option<Vec<FileSystemDescription>>An array of file system descriptions.
marker: Option<String>Present if provided by caller in the request (String).
next_marker: Option<String>Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.
Trait Implementations§
Source§impl Clone for DescribeFileSystemsResponse
impl Clone for DescribeFileSystemsResponse
Source§fn clone(&self) -> DescribeFileSystemsResponse
fn clone(&self) -> DescribeFileSystemsResponse
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 DescribeFileSystemsResponse
impl Debug for DescribeFileSystemsResponse
Source§impl Default for DescribeFileSystemsResponse
impl Default for DescribeFileSystemsResponse
Source§fn default() -> DescribeFileSystemsResponse
fn default() -> DescribeFileSystemsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeFileSystemsResponse
impl<'de> Deserialize<'de> for DescribeFileSystemsResponse
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
impl StructuralPartialEq for DescribeFileSystemsResponse
Auto Trait Implementations§
impl Freeze for DescribeFileSystemsResponse
impl RefUnwindSafe for DescribeFileSystemsResponse
impl Send for DescribeFileSystemsResponse
impl Sync for DescribeFileSystemsResponse
impl Unpin for DescribeFileSystemsResponse
impl UnwindSafe for DescribeFileSystemsResponse
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