pub struct GitRepositorySettings {
pub script_path: String,
pub git_repo_resource_path: String,
pub use_individual_branch: Option<bool>,
pub group_by_folder: Option<bool>,
pub exclude_types_override: Option<Vec<ExcludeTypesOverride>>,
}
Fields§
§script_path: String
§git_repo_resource_path: String
§use_individual_branch: Option<bool>
§group_by_folder: Option<bool>
§exclude_types_override: Option<Vec<ExcludeTypesOverride>>
Implementations§
Source§impl GitRepositorySettings
impl GitRepositorySettings
pub fn new( script_path: String, git_repo_resource_path: String, ) -> GitRepositorySettings
Trait Implementations§
Source§impl Clone for GitRepositorySettings
impl Clone for GitRepositorySettings
Source§fn clone(&self) -> GitRepositorySettings
fn clone(&self) -> GitRepositorySettings
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 GitRepositorySettings
impl Debug for GitRepositorySettings
Source§impl Default for GitRepositorySettings
impl Default for GitRepositorySettings
Source§fn default() -> GitRepositorySettings
fn default() -> GitRepositorySettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GitRepositorySettings
impl<'de> Deserialize<'de> for GitRepositorySettings
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 GitRepositorySettings
impl PartialEq for GitRepositorySettings
Source§impl Serialize for GitRepositorySettings
impl Serialize for GitRepositorySettings
impl StructuralPartialEq for GitRepositorySettings
Auto Trait Implementations§
impl Freeze for GitRepositorySettings
impl RefUnwindSafe for GitRepositorySettings
impl Send for GitRepositorySettings
impl Sync for GitRepositorySettings
impl Unpin for GitRepositorySettings
impl UnwindSafe for GitRepositorySettings
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