pub struct RawNamepath {
pub kind: TestingKind,
pub use_case: UseCase,
pub package_name: &'static str,
pub path: &'static str,
pub name: Option<&'static str>,
}
Expand description
Retains the original elements used to construct a Namepath
Primarily used for debugging namepath problems.
Fields§
§kind: TestingKind
§use_case: UseCase
§package_name: &'static str
§path: &'static str
§name: Option<&'static str>
Trait Implementations§
Source§impl Clone for RawNamepath
impl Clone for RawNamepath
Source§fn clone(&self) -> RawNamepath
fn clone(&self) -> RawNamepath
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 Debug for RawNamepath
impl Debug for RawNamepath
Source§impl Display for RawNamepath
impl Display for RawNamepath
Source§impl PartialEq for RawNamepath
impl PartialEq for RawNamepath
impl Eq for RawNamepath
impl StructuralPartialEq for RawNamepath
Auto Trait Implementations§
impl Freeze for RawNamepath
impl RefUnwindSafe for RawNamepath
impl Send for RawNamepath
impl Sync for RawNamepath
impl Unpin for RawNamepath
impl UnwindSafe for RawNamepath
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