pub struct QuerySshfsVolumeOpts<'a> {
pub cache_key: Option<&'a str>,
pub experimental_service_host: Option<Id>,
pub insecure_skip_host_key_check: Option<bool>,
pub known_hosts: Option<Id>,
}Fields§
§cache_key: Option<&'a str>Optional cache equivalence key. If set, volumes with the same cacheKey may be considered equivalent for cache lookups, still subject to their resource dependencies.
experimental_service_host: Option<Id>Service to use as the SSHFS network endpoint while verifying the original host key.
insecure_skip_host_key_check: Option<bool>Disable SSH host key verification. This is insecure and must be explicitly opted into.
known_hosts: Option<Id>known_hosts material used to verify the remote host key. Required unless insecureSkipHostKeyCheck is true.
Trait Implementations§
Source§impl<'a> Debug for QuerySshfsVolumeOpts<'a>
impl<'a> Debug for QuerySshfsVolumeOpts<'a>
Source§impl<'a> PartialEq for QuerySshfsVolumeOpts<'a>
impl<'a> PartialEq for QuerySshfsVolumeOpts<'a>
impl<'a> StructuralPartialEq for QuerySshfsVolumeOpts<'a>
Auto Trait Implementations§
impl<'a> Freeze for QuerySshfsVolumeOpts<'a>
impl<'a> RefUnwindSafe for QuerySshfsVolumeOpts<'a>
impl<'a> Send for QuerySshfsVolumeOpts<'a>
impl<'a> Sync for QuerySshfsVolumeOpts<'a>
impl<'a> Unpin for QuerySshfsVolumeOpts<'a>
impl<'a> UnsafeUnpin for QuerySshfsVolumeOpts<'a>
impl<'a> UnwindSafe for QuerySshfsVolumeOpts<'a>
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more