pub struct InstalledExtensionState {
pub flags: Option<String>,
pub installation_issues: Vec<InstalledExtensionStateIssue>,
pub last_updated: Option<OffsetDateTime>,
}
Expand description
The state of an installed extension
Fields§
§flags: Option<String>
States of an installed extension
installation_issues: Vec<InstalledExtensionStateIssue>
List of installation issues
last_updated: Option<OffsetDateTime>
The time at which this installation was last updated
Implementations§
Trait Implementations§
source§impl Clone for InstalledExtensionState
impl Clone for InstalledExtensionState
source§fn clone(&self) -> InstalledExtensionState
fn clone(&self) -> InstalledExtensionState
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 InstalledExtensionState
impl Debug for InstalledExtensionState
source§impl Default for InstalledExtensionState
impl Default for InstalledExtensionState
source§fn default() -> InstalledExtensionState
fn default() -> InstalledExtensionState
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for InstalledExtensionState
impl<'de> Deserialize<'de> for InstalledExtensionState
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 InstalledExtensionState
impl PartialEq for InstalledExtensionState
source§fn eq(&self, other: &InstalledExtensionState) -> bool
fn eq(&self, other: &InstalledExtensionState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for InstalledExtensionState
impl Serialize for InstalledExtensionState
impl StructuralPartialEq for InstalledExtensionState
Auto Trait Implementations§
impl RefUnwindSafe for InstalledExtensionState
impl Send for InstalledExtensionState
impl Sync for InstalledExtensionState
impl Unpin for InstalledExtensionState
impl UnwindSafe for InstalledExtensionState
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