pub struct SshProperties {
pub access_types: Vec<AccessType>,
pub uri: String,
}Fields§
§access_types: Vec<AccessType>The type of access being granted to the remote resource.
If omitted, it defaults to ['remote'].
uri: StringThe full address to be used for ssh or scp access, in the
username@host.fqdn:port/resource/path, where authentication
expected to take place via public/private key.
Trait Implementations§
Source§impl Clone for SshProperties
impl Clone for SshProperties
Source§fn clone(&self) -> SshProperties
fn clone(&self) -> SshProperties
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 SshProperties
impl Debug for SshProperties
Source§impl<'de> Deserialize<'de> for SshProperties
impl<'de> Deserialize<'de> for SshProperties
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
Source§impl PartialEq for SshProperties
impl PartialEq for SshProperties
Source§impl Serialize for SshProperties
impl Serialize for SshProperties
impl Eq for SshProperties
impl StructuralPartialEq for SshProperties
Auto Trait Implementations§
impl Freeze for SshProperties
impl RefUnwindSafe for SshProperties
impl Send for SshProperties
impl Sync for SshProperties
impl Unpin for SshProperties
impl UnsafeUnpin for SshProperties
impl UnwindSafe for SshProperties
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