pub enum PreRelease {
Never,
Auto,
Always,
}
Expand description
Should dotnet-outdated look for pre-release versions of packages?
Variants§
Never
Never look for pre-releases
Auto
automatically let dotnet-outdated determine if pre-releases are appropriate to look for
Always
Always look for pre-releases
Trait Implementations§
Source§impl Clone for PreRelease
impl Clone for PreRelease
Source§fn clone(&self) -> PreRelease
fn clone(&self) -> PreRelease
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 PreRelease
impl Debug for PreRelease
Source§impl Default for PreRelease
impl Default for PreRelease
Source§fn default() -> PreRelease
fn default() -> PreRelease
Returns the “default value” for a type. Read more
Source§impl Display for PreRelease
impl Display for PreRelease
Source§impl ValueEnum for PreRelease
impl ValueEnum for PreRelease
Auto Trait Implementations§
impl Freeze for PreRelease
impl RefUnwindSafe for PreRelease
impl Send for PreRelease
impl Sync for PreRelease
impl Unpin for PreRelease
impl UnwindSafe for PreRelease
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