pub struct DescribeFileSystemsResponse {
pub file_systems: Option<Vec<FileSystem>>,
pub next_token: Option<String>,
}Expand description
The response object for DescribeFileSystems operation.
Fields§
§file_systems: Option<Vec<FileSystem>>An array of file system descriptions.
next_token: Option<String>Present if there are more file systems than returned in the response (String). You can use the NextToken value in the later 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