pub struct VectorType<'input> {
pub span: Span,
pub start_bracket: SimpleToken<'input>,
pub inner_type: Box<Type<'input>>,
pub end_bracket: SimpleToken<'input>,
}Fields§
§span: Span§start_bracket: SimpleToken<'input>§inner_type: Box<Type<'input>>§end_bracket: SimpleToken<'input>Trait Implementations§
Source§impl<'input> Clone for VectorType<'input>
impl<'input> Clone for VectorType<'input>
Source§fn clone(&self) -> VectorType<'input>
fn clone(&self) -> VectorType<'input>
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 moreAuto Trait Implementations§
impl<'input> Freeze for VectorType<'input>
impl<'input> RefUnwindSafe for VectorType<'input>
impl<'input> Send for VectorType<'input>
impl<'input> Sync for VectorType<'input>
impl<'input> Unpin for VectorType<'input>
impl<'input> UnwindSafe for VectorType<'input>
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