Skip to main content

Warning

Struct Warning 

Source
pub struct Warning<'t> {
    pub kind: WarningKind,
    pub name: &'t str,
    pub message: Option<&'t str>,
    pub warn_at: Option<&'t str>,
    pub remove_at: Option<&'t str>,
    pub replacement: Option<&'t str>,
}
Expand description

One thing a command line used that its own spec says not to use any more.

Fields§

§kind: WarningKind

What sort of declaration it was, for a caller that treats them differently.

§name: &'t str

What the user typed or set: --old-flag, old-cmd, OLD_ENV.

§message: Option<&'t str>

The author’s reason, when the declaration carries one.

§warn_at: Option<&'t str>

The release warnings start at. A warning that is here has already passed it.

§remove_at: Option<&'t str>

The release the declaration goes away in, when the author has named one.

§replacement: Option<&'t str>

What to use instead, when the declaration implies one — the current variable, for a deprecated environment alias.

Implementations§

Source§

impl<'t> Warning<'t>

Source

pub const fn flag( name: &'t str, message: Option<&'t str>, warn_at: Option<&'t str>, remove_at: Option<&'t str>, ) -> Warning<'t>

A deprecated flag that was given.

Source

pub const fn command( name: &'t str, message: Option<&'t str>, warn_at: Option<&'t str>, remove_at: Option<&'t str>, ) -> Warning<'t>

A deprecated command that was selected.

Source

pub const fn env(name: &'t str, replacement: Option<&'t str>) -> Warning<'t>

A value read from a deprecated environment alias, and the current name for it.

An alias carries no milestones of its own: the declaration that named it is what says it is deprecated, so this always warns.

Trait Implementations§

Source§

impl<'t> Clone for Warning<'t>

Source§

fn clone(&self) -> Warning<'t>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'t> Copy for Warning<'t>

Source§

impl<'t> Debug for Warning<'t>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<'t> Eq for Warning<'t>

Source§

impl<'t> PartialEq for Warning<'t>

Source§

fn eq(&self, other: &Warning<'t>) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl<'t> StructuralPartialEq for Warning<'t>

Auto Trait Implementations§

§

impl<'t> Freeze for Warning<'t>

§

impl<'t> RefUnwindSafe for Warning<'t>

§

impl<'t> Send for Warning<'t>

§

impl<'t> Sync for Warning<'t>

§

impl<'t> Unpin for Warning<'t>

§

impl<'t> UnsafeUnpin for Warning<'t>

§

impl<'t> UnwindSafe for Warning<'t>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.