pub struct BrandReservation {
pub name: &'static str,
pub version: &'static str,
pub status: &'static str,
}Expand description
Metadata returned by brand_reservation.
Fields§
§name: &'static strThe reserved crate name.
version: &'static strThe placeholder version.
status: &'static strStatus.
Trait Implementations§
Source§impl Clone for BrandReservation
impl Clone for BrandReservation
Source§fn clone(&self) -> BrandReservation
fn clone(&self) -> BrandReservation
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 BrandReservation
impl Debug for BrandReservation
Source§impl PartialEq for BrandReservation
impl PartialEq for BrandReservation
Source§fn eq(&self, other: &BrandReservation) -> bool
fn eq(&self, other: &BrandReservation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for BrandReservation
impl Eq for BrandReservation
impl StructuralPartialEq for BrandReservation
Auto Trait Implementations§
impl Freeze for BrandReservation
impl RefUnwindSafe for BrandReservation
impl Send for BrandReservation
impl Sync for BrandReservation
impl Unpin for BrandReservation
impl UnsafeUnpin for BrandReservation
impl UnwindSafe for BrandReservation
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