Enum cargo::util::toml::TomlDependency
source · pub enum TomlDependency<P: Clone = String> {
Simple(String),
Detailed(DetailedTomlDependency<P>),
}
Variants§
Simple(String)
In the simple format, only a version is specified, eg.
package = "<version>"
Detailed(DetailedTomlDependency<P>)
The simple format is equivalent to a detailed dependency
specifying only a version, eg.
package = { version = "<version>" }
Implementations§
source§impl TomlDependency
impl TomlDependency
fn unused_keys(&self) -> Vec<String>
source§impl<P: ResolveToPath + Clone> TomlDependency<P>
impl<P: ResolveToPath + Clone> TomlDependency<P>
pub(crate) fn to_dependency_split( &self, name: &str, source_id: SourceId, nested_paths: &mut Vec<PathBuf>, config: &Config, warnings: &mut Vec<String>, platform: Option<Platform>, root: &Path, features: &Features, kind: Option<DepKind> ) -> CargoResult<Dependency>
fn to_dependency( &self, name: &str, cx: &mut Context<'_, '_>, kind: Option<DepKind> ) -> CargoResult<Dependency>
fn is_version_specified(&self) -> bool
fn is_optional(&self) -> bool
Trait Implementations§
source§impl<P: Clone + Clone> Clone for TomlDependency<P>
impl<P: Clone + Clone> Clone for TomlDependency<P>
source§fn clone(&self) -> TomlDependency<P>
fn clone(&self) -> TomlDependency<P>
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<'de, P: Deserialize<'de> + Clone> Deserialize<'de> for TomlDependency<P>
impl<'de, P: Deserialize<'de> + Clone> Deserialize<'de> for TomlDependency<P>
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<P> RefUnwindSafe for TomlDependency<P>where P: RefUnwindSafe,
impl<P> Send for TomlDependency<P>where P: Send,
impl<P> Sync for TomlDependency<P>where P: Sync,
impl<P> Unpin for TomlDependency<P>where P: Unpin,
impl<P> UnwindSafe for TomlDependency<P>where P: UnwindSafe,
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> Serialize for Twhere
T: Serialize + ?Sized,
impl<T> Serialize for Twhere T: Serialize + ?Sized,
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>
source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.