pub struct Test<'a, 'b, 'c> {
pub name: &'a str,
pub status: &'b str,
pub error: Option<&'c str>,
}
Fields§
§name: &'a str
§status: &'b str
§error: Option<&'c str>
Trait Implementations§
impl<'a, 'b, 'c> StructuralPartialEq for Test<'a, 'b, 'c>
Auto Trait Implementations§
impl<'a, 'b, 'c> Freeze for Test<'a, 'b, 'c>
impl<'a, 'b, 'c> RefUnwindSafe for Test<'a, 'b, 'c>
impl<'a, 'b, 'c> Send for Test<'a, 'b, 'c>
impl<'a, 'b, 'c> Sync for Test<'a, 'b, 'c>
impl<'a, 'b, 'c> Unpin for Test<'a, 'b, 'c>
impl<'a, 'b, 'c> UnwindSafe for Test<'a, 'b, 'c>
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