pub struct MetadataTable { /* private fields */ }Expand description
Represents the metadata table for a Cargo.toml
Trait Implementations§
Source§impl Clone for MetadataTable
impl Clone for MetadataTable
Source§fn clone(&self) -> MetadataTable
fn clone(&self) -> MetadataTable
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MetadataTable
impl Debug for MetadataTable
Source§impl PartialEq for MetadataTable
impl PartialEq for MetadataTable
Source§fn eq(&self, other: &MetadataTable) -> bool
fn eq(&self, other: &MetadataTable) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MetadataTable
Auto Trait Implementations§
impl Freeze for MetadataTable
impl RefUnwindSafe for MetadataTable
impl Send for MetadataTable
impl Sync for MetadataTable
impl Unpin for MetadataTable
impl UnsafeUnpin for MetadataTable
impl UnwindSafe for MetadataTable
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more