pub struct SyntaxSummary {
pub name: String,
pub description: String,
pub available_environments: Vec<String>,
pub requests: Vec<SyntaxRequestSummary>,
}Fields§
§name: String§description: String§available_environments: Vec<String>§requests: Vec<SyntaxRequestSummary>Trait Implementations§
Source§impl Clone for SyntaxSummary
impl Clone for SyntaxSummary
Source§fn clone(&self) -> SyntaxSummary
fn clone(&self) -> SyntaxSummary
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 moreAuto Trait Implementations§
impl Freeze for SyntaxSummary
impl RefUnwindSafe for SyntaxSummary
impl Send for SyntaxSummary
impl Sync for SyntaxSummary
impl Unpin for SyntaxSummary
impl UnsafeUnpin for SyntaxSummary
impl UnwindSafe for SyntaxSummary
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