pub struct ToolDeprecation {
pub deprecated: bool,
pub reason: Option<String>,
pub replacement: Option<String>,
pub deprecated_date: Option<DateTime<Utc>>,
pub removal_date: Option<DateTime<Utc>>,
pub severity: DeprecationSeverity,
}
Expand description
Tool deprecation information and versioning
Fields§
§deprecated: bool
Whether the tool is deprecated
reason: Option<String>
Deprecation reason/message
replacement: Option<String>
Recommended replacement tool
deprecated_date: Option<DateTime<Utc>>
Date when tool was deprecated
removal_date: Option<DateTime<Utc>>
Date when tool will be removed (if known)
severity: DeprecationSeverity
Severity of deprecation warning
Implementations§
Source§impl ToolDeprecation
impl ToolDeprecation
Sourcepub fn with_replacement(self, replacement: String) -> Self
pub fn with_replacement(self, replacement: String) -> Self
Set replacement tool
Sourcepub fn with_removal_date(self, removal_date: DateTime<Utc>) -> Self
pub fn with_removal_date(self, removal_date: DateTime<Utc>) -> Self
Set removal date
Sourcepub fn with_severity(self, severity: DeprecationSeverity) -> Self
pub fn with_severity(self, severity: DeprecationSeverity) -> Self
Set severity
Trait Implementations§
Source§impl Clone for ToolDeprecation
impl Clone for ToolDeprecation
Source§fn clone(&self) -> ToolDeprecation
fn clone(&self) -> ToolDeprecation
Returns a duplicate 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 ToolDeprecation
impl Debug for ToolDeprecation
Source§impl<'de> Deserialize<'de> for ToolDeprecation
impl<'de> Deserialize<'de> for ToolDeprecation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ToolDeprecation
impl PartialEq for ToolDeprecation
Source§impl Serialize for ToolDeprecation
impl Serialize for ToolDeprecation
impl StructuralPartialEq for ToolDeprecation
Auto Trait Implementations§
impl Freeze for ToolDeprecation
impl RefUnwindSafe for ToolDeprecation
impl Send for ToolDeprecation
impl Sync for ToolDeprecation
impl Unpin for ToolDeprecation
impl UnwindSafe for ToolDeprecation
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