pub struct ExtensionDetailResponse {
pub extension: ExtensionInfo,
pub category: Option<Category>,
pub required_by_apps: Vec<String>,
pub is_loaded: bool,
}Expand description
Response for extension details
Fields§
§extension: ExtensionInfo§category: Option<Category>§required_by_apps: Vec<String>§is_loaded: boolTrait Implementations§
Source§impl Clone for ExtensionDetailResponse
impl Clone for ExtensionDetailResponse
Source§fn clone(&self) -> ExtensionDetailResponse
fn clone(&self) -> ExtensionDetailResponse
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 ExtensionDetailResponse
impl Debug for ExtensionDetailResponse
Source§impl<'de> Deserialize<'de> for ExtensionDetailResponse
impl<'de> Deserialize<'de> for ExtensionDetailResponse
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
Auto Trait Implementations§
impl Freeze for ExtensionDetailResponse
impl RefUnwindSafe for ExtensionDetailResponse
impl Send for ExtensionDetailResponse
impl Sync for ExtensionDetailResponse
impl Unpin for ExtensionDetailResponse
impl UnsafeUnpin for ExtensionDetailResponse
impl UnwindSafe for ExtensionDetailResponse
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