pub struct RemoteEntry {
pub name: String,
pub uri: String,
pub disabled: bool,
}Expand description
A single entry in blit.remotes. disabled entries are persisted as
# name = uri and are excluded from connection resolution but preserved
across restarts so users can re-enable them later.
Fields§
§name: String§uri: String§disabled: boolTrait Implementations§
Source§impl Clone for RemoteEntry
impl Clone for RemoteEntry
Source§fn clone(&self) -> RemoteEntry
fn clone(&self) -> RemoteEntry
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 RemoteEntry
impl Debug for RemoteEntry
Source§impl PartialEq for RemoteEntry
impl PartialEq for RemoteEntry
Source§fn eq(&self, other: &RemoteEntry) -> bool
fn eq(&self, other: &RemoteEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RemoteEntry
impl StructuralPartialEq for RemoteEntry
Auto Trait Implementations§
impl Freeze for RemoteEntry
impl RefUnwindSafe for RemoteEntry
impl Send for RemoteEntry
impl Sync for RemoteEntry
impl Unpin for RemoteEntry
impl UnsafeUnpin for RemoteEntry
impl UnwindSafe for RemoteEntry
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