pub struct RemotePath {
pub path: String,
pub pubpath: String,
pub name: RemoteName,
pub pubkey: Option<RepoPublicKey>,
}Fields§
§path: StringURL/Path to packages
pubpath: StringURL to public key
name: RemoteNameUnique ID
pubkey: Option<RepoPublicKey>Embedded public key, lazily loaded
Implementations§
Trait Implementations§
Source§impl Clone for RemotePath
impl Clone for RemotePath
Source§fn clone(&self) -> RemotePath
fn clone(&self) -> RemotePath
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 moreAuto Trait Implementations§
impl Freeze for RemotePath
impl RefUnwindSafe for RemotePath
impl Send for RemotePath
impl Sync for RemotePath
impl Unpin for RemotePath
impl UnsafeUnpin for RemotePath
impl UnwindSafe for RemotePath
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