pub struct GitRepositorySettingsSettings {
pub include_path: Option<Vec<String>>,
pub include_type: Option<Vec<IncludeType>>,
pub exclude_path: Option<Vec<String>>,
pub extra_include_path: Option<Vec<String>>,
}
Fields§
§include_path: Option<Vec<String>>
§include_type: Option<Vec<IncludeType>>
§exclude_path: Option<Vec<String>>
§extra_include_path: Option<Vec<String>>
Implementations§
Trait Implementations§
Source§impl Clone for GitRepositorySettingsSettings
impl Clone for GitRepositorySettingsSettings
Source§fn clone(&self) -> GitRepositorySettingsSettings
fn clone(&self) -> GitRepositorySettingsSettings
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 Default for GitRepositorySettingsSettings
impl Default for GitRepositorySettingsSettings
Source§fn default() -> GitRepositorySettingsSettings
fn default() -> GitRepositorySettingsSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GitRepositorySettingsSettings
impl<'de> Deserialize<'de> for GitRepositorySettingsSettings
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 GitRepositorySettingsSettings
impl PartialEq for GitRepositorySettingsSettings
Source§fn eq(&self, other: &GitRepositorySettingsSettings) -> bool
fn eq(&self, other: &GitRepositorySettingsSettings) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GitRepositorySettingsSettings
Auto Trait Implementations§
impl Freeze for GitRepositorySettingsSettings
impl RefUnwindSafe for GitRepositorySettingsSettings
impl Send for GitRepositorySettingsSettings
impl Sync for GitRepositorySettingsSettings
impl Unpin for GitRepositorySettingsSettings
impl UnwindSafe for GitRepositorySettingsSettings
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