pub struct SvnMappingDetails {
pub depth: Option<i32>,
pub ignore_externals: Option<bool>,
pub local_path: Option<String>,
pub revision: Option<String>,
pub server_path: Option<String>,
}Expand description
Represents a Subversion mapping entry.
Fields§
§depth: Option<i32>The depth.
ignore_externals: Option<bool>Indicates whether to ignore externals.
local_path: Option<String>The local path.
revision: Option<String>The revision.
server_path: Option<String>The server path.
Implementations§
Trait Implementations§
Source§impl Clone for SvnMappingDetails
impl Clone for SvnMappingDetails
Source§fn clone(&self) -> SvnMappingDetails
fn clone(&self) -> SvnMappingDetails
Returns a copy 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 SvnMappingDetails
impl Debug for SvnMappingDetails
Source§impl Default for SvnMappingDetails
impl Default for SvnMappingDetails
Source§fn default() -> SvnMappingDetails
fn default() -> SvnMappingDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SvnMappingDetails
impl<'de> Deserialize<'de> for SvnMappingDetails
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
Source§impl PartialEq for SvnMappingDetails
impl PartialEq for SvnMappingDetails
Source§impl Serialize for SvnMappingDetails
impl Serialize for SvnMappingDetails
impl StructuralPartialEq for SvnMappingDetails
Auto Trait Implementations§
impl Freeze for SvnMappingDetails
impl RefUnwindSafe for SvnMappingDetails
impl Send for SvnMappingDetails
impl Sync for SvnMappingDetails
impl Unpin for SvnMappingDetails
impl UnwindSafe for SvnMappingDetails
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