pub struct EcosystemSettings {
pub enabled: Option<bool>,
pub roots: Vec<String>,
pub exclude: Vec<String>,
pub dependency_version_prefix: Option<String>,
pub versioned_files: Vec<VersionedFileDefinition>,
pub lockfile_commands: Vec<LockfileCommandDefinition>,
}Fields§
§enabled: Option<bool>§roots: Vec<String>§exclude: Vec<String>§dependency_version_prefix: Option<String>§versioned_files: Vec<VersionedFileDefinition>§lockfile_commands: Vec<LockfileCommandDefinition>Trait Implementations§
Source§impl Clone for EcosystemSettings
impl Clone for EcosystemSettings
Source§fn clone(&self) -> EcosystemSettings
fn clone(&self) -> EcosystemSettings
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 EcosystemSettings
impl Debug for EcosystemSettings
Source§impl Default for EcosystemSettings
impl Default for EcosystemSettings
Source§fn default() -> EcosystemSettings
fn default() -> EcosystemSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EcosystemSettings
impl<'de> Deserialize<'de> for EcosystemSettings
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 EcosystemSettings
impl PartialEq for EcosystemSettings
Source§impl Serialize for EcosystemSettings
impl Serialize for EcosystemSettings
impl Eq for EcosystemSettings
impl StructuralPartialEq for EcosystemSettings
Auto Trait Implementations§
impl Freeze for EcosystemSettings
impl RefUnwindSafe for EcosystemSettings
impl Send for EcosystemSettings
impl Sync for EcosystemSettings
impl Unpin for EcosystemSettings
impl UnsafeUnpin for EcosystemSettings
impl UnwindSafe for EcosystemSettings
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