pub struct DescribeFileSystemsResponse {
pub file_systems: Vec<FileSystemDescription>,
pub next_marker: Option<String>,
pub marker: Option<String>,
}Expand description
AWS API: efs.v1.DescribeFileSystemsResponse
Reference: https://docs.aws.amazon.com/efs/latest/ug/API_Operations.html/DescribeFileSystemsResponse
Fields§
§file_systems: Vec<FileSystemDescription>An array of file system descriptions.
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.
marker: Option<String>Present if provided by caller in the request (String).
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
Auto Trait Implementations§
impl Freeze for DescribeFileSystemsResponse
impl RefUnwindSafe for DescribeFileSystemsResponse
impl Send for DescribeFileSystemsResponse
impl Sync for DescribeFileSystemsResponse
impl Unpin for DescribeFileSystemsResponse
impl UnsafeUnpin 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