pub struct FeatureSummary {
pub name: String,
pub description: String,
pub operations: Vec<String>,
}
Expand description
Feature summary for discovery
Fields§
§name: String
§description: String
§operations: Vec<String>
Trait Implementations§
Source§impl Clone for FeatureSummary
impl Clone for FeatureSummary
Source§fn clone(&self) -> FeatureSummary
fn clone(&self) -> FeatureSummary
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 FeatureSummary
impl Debug for FeatureSummary
Source§impl<'de> Deserialize<'de> for FeatureSummary
impl<'de> Deserialize<'de> for FeatureSummary
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 FeatureSummary
impl RefUnwindSafe for FeatureSummary
impl Send for FeatureSummary
impl Sync for FeatureSummary
impl Unpin for FeatureSummary
impl UnwindSafe for FeatureSummary
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