pub struct IdentityFixture {
pub name: &'static str,
pub hostname: &'static str,
pub os_name: &'static str,
pub os_version: &'static str,
pub kernel_name: &'static str,
pub kernel_release: &'static str,
pub architecture: &'static str,
}Expand description
Identity fields shared by every test fixture.
Fields§
§name: &'static str§hostname: &'static str§os_name: &'static str§os_version: &'static str§kernel_name: &'static str§kernel_release: &'static str§architecture: &'static strImplementations§
Trait Implementations§
Source§impl Clone for IdentityFixture
impl Clone for IdentityFixture
Source§fn clone(&self) -> IdentityFixture
fn clone(&self) -> IdentityFixture
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 moreAuto Trait Implementations§
impl Freeze for IdentityFixture
impl RefUnwindSafe for IdentityFixture
impl Send for IdentityFixture
impl Sync for IdentityFixture
impl Unpin for IdentityFixture
impl UnsafeUnpin for IdentityFixture
impl UnwindSafe for IdentityFixture
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