pub struct AggregateShape<'a> {
pub type_name: AggregateTypeName,
pub identifier: &'a str,
pub for_resource: Option<&'a str>,
pub mixins: Vec<&'a str>,
pub members: Vec<ShapeMember<'a>>,
}Fields§
§type_name: AggregateTypeName§identifier: &'a str§for_resource: Option<&'a str>§mixins: Vec<&'a str>§members: Vec<ShapeMember<'a>>Trait Implementations§
Source§impl<'a> Clone for AggregateShape<'a>
impl<'a> Clone for AggregateShape<'a>
Source§fn clone(&self) -> AggregateShape<'a>
fn clone(&self) -> AggregateShape<'a>
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<'a> Debug for AggregateShape<'a>
impl<'a> Debug for AggregateShape<'a>
Source§impl<'a> PartialEq for AggregateShape<'a>
impl<'a> PartialEq for AggregateShape<'a>
impl<'a> Eq for AggregateShape<'a>
impl<'a> StructuralPartialEq for AggregateShape<'a>
Auto Trait Implementations§
impl<'a> Freeze for AggregateShape<'a>
impl<'a> RefUnwindSafe for AggregateShape<'a>
impl<'a> Send for AggregateShape<'a>
impl<'a> Sync for AggregateShape<'a>
impl<'a> Unpin for AggregateShape<'a>
impl<'a> UnwindSafe for AggregateShape<'a>
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