Struct aws_sdk_datasync::types::FsxProtocolNfs
source · #[non_exhaustive]pub struct FsxProtocolNfs {
pub mount_options: Option<NfsMountOptions>,
}
Expand description
Specifies the Network File System (NFS) protocol configuration that DataSync uses to access your Amazon FSx for OpenZFS or Amazon FSx for NetApp ONTAP file system.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.mount_options: Option<NfsMountOptions>
Specifies how DataSync can access a location using the NFS protocol.
Implementations§
source§impl FsxProtocolNfs
impl FsxProtocolNfs
sourcepub fn mount_options(&self) -> Option<&NfsMountOptions>
pub fn mount_options(&self) -> Option<&NfsMountOptions>
Specifies how DataSync can access a location using the NFS protocol.
source§impl FsxProtocolNfs
impl FsxProtocolNfs
sourcepub fn builder() -> FsxProtocolNfsBuilder
pub fn builder() -> FsxProtocolNfsBuilder
Creates a new builder-style object to manufacture FsxProtocolNfs
.
Trait Implementations§
source§impl Clone for FsxProtocolNfs
impl Clone for FsxProtocolNfs
source§fn clone(&self) -> FsxProtocolNfs
fn clone(&self) -> FsxProtocolNfs
Returns a copy 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 FsxProtocolNfs
impl Debug for FsxProtocolNfs
source§impl PartialEq for FsxProtocolNfs
impl PartialEq for FsxProtocolNfs
source§fn eq(&self, other: &FsxProtocolNfs) -> bool
fn eq(&self, other: &FsxProtocolNfs) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FsxProtocolNfs
Auto Trait Implementations§
impl RefUnwindSafe for FsxProtocolNfs
impl Send for FsxProtocolNfs
impl Sync for FsxProtocolNfs
impl Unpin for FsxProtocolNfs
impl UnwindSafe for FsxProtocolNfs
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