pub struct AppToolSummary {
pub description: String,
pub disabled_reason: Option<String>,
pub is_enabled: Option<bool>,
pub is_read_only: Option<bool>,
pub name: String,
pub title: Option<String>,
}Fields§
§description: String§disabled_reason: Option<String>§is_enabled: Option<bool>§is_read_only: Option<bool>§name: String§title: Option<String>Trait Implementations§
Source§impl Clone for AppToolSummary
impl Clone for AppToolSummary
Source§fn clone(&self) -> AppToolSummary
fn clone(&self) -> AppToolSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AppToolSummary
impl Debug for AppToolSummary
Source§impl<'de> Deserialize<'de> for AppToolSummary
impl<'de> Deserialize<'de> for AppToolSummary
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 AppToolSummary
impl PartialEq for AppToolSummary
Source§impl Serialize for AppToolSummary
impl Serialize for AppToolSummary
impl StructuralPartialEq for AppToolSummary
Auto Trait Implementations§
impl Freeze for AppToolSummary
impl RefUnwindSafe for AppToolSummary
impl Send for AppToolSummary
impl Sync for AppToolSummary
impl Unpin for AppToolSummary
impl UnsafeUnpin for AppToolSummary
impl UnwindSafe for AppToolSummary
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