pub struct FixtureIndex {
pub fixtures: Vec<IndexEntry>,
}Expand description
On-disk representation of the signed fixture manifest.
Fields§
§fixtures: Vec<IndexEntry>Every fixture under the fixtures directory that the adapter trusts.
Trait Implementations§
Source§impl Clone for FixtureIndex
impl Clone for FixtureIndex
Source§fn clone(&self) -> FixtureIndex
fn clone(&self) -> FixtureIndex
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 FixtureIndex
impl Debug for FixtureIndex
Source§impl Default for FixtureIndex
impl Default for FixtureIndex
Source§fn default() -> FixtureIndex
fn default() -> FixtureIndex
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FixtureIndex
impl<'de> Deserialize<'de> for FixtureIndex
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 Freeze for FixtureIndex
impl RefUnwindSafe for FixtureIndex
impl Send for FixtureIndex
impl Sync for FixtureIndex
impl Unpin for FixtureIndex
impl UnsafeUnpin for FixtureIndex
impl UnwindSafe for FixtureIndex
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