pub struct RemoteEntry {
pub name: String,
pub remote_host: String,
pub remote_dir: String,
pub override_paths: Vec<String>,
pub post_sync_command: Option<String>,
pub preferred: bool,
pub ignore_patterns: Vec<String>,
}Fields§
§name: String§remote_host: String§remote_dir: String§override_paths: Vec<String>§post_sync_command: Option<String>§preferred: bool§ignore_patterns: Vec<String>Trait 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 · 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<'de> Deserialize<'de> for RemoteEntry
impl<'de> Deserialize<'de> for RemoteEntry
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
Auto Trait Implementations§
impl Freeze for RemoteEntry
impl RefUnwindSafe for RemoteEntry
impl Send for RemoteEntry
impl Sync for RemoteEntry
impl Unpin 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