pub struct SshUrl {
pub user: Option<String>,
pub host: String,
pub port: Option<u16>,
pub path: String,
}Expand description
Parsed SSH URL components
Fields§
§user: Option<String>§host: String§port: Option<u16>§path: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for SshUrl
impl RefUnwindSafe for SshUrl
impl Send for SshUrl
impl Sync for SshUrl
impl Unpin for SshUrl
impl UnsafeUnpin for SshUrl
impl UnwindSafe for SshUrl
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