pub enum SelectedRemote {
Web(WebRemote),
Alias(AliasRemote),
}Expand description
The remote a permalink will point at.
Variants§
Web(WebRemote)
Alias(AliasRemote)
Trait Implementations§
Source§impl Clone for SelectedRemote
impl Clone for SelectedRemote
Source§fn clone(&self) -> SelectedRemote
fn clone(&self) -> SelectedRemote
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SelectedRemote
impl Debug for SelectedRemote
impl Eq for SelectedRemote
Source§impl PartialEq for SelectedRemote
impl PartialEq for SelectedRemote
impl StructuralPartialEq for SelectedRemote
Auto Trait Implementations§
impl Freeze for SelectedRemote
impl RefUnwindSafe for SelectedRemote
impl Send for SelectedRemote
impl Sync for SelectedRemote
impl Unpin for SelectedRemote
impl UnsafeUnpin for SelectedRemote
impl UnwindSafe for SelectedRemote
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