pub struct ArrayType<'input> {
pub span: Span,
pub start_bracket: SimpleToken<'input>,
pub inner_type: Box<Type<'input>>,
pub colon: SimpleToken<'input>,
pub size: Expr<'input>,
pub end_bracket: SimpleToken<'input>,
}Fields§
§span: Span§start_bracket: SimpleToken<'input>§inner_type: Box<Type<'input>>§colon: SimpleToken<'input>§size: Expr<'input>§end_bracket: SimpleToken<'input>Trait Implementations§
Auto Trait Implementations§
impl<'input> Freeze for ArrayType<'input>
impl<'input> RefUnwindSafe for ArrayType<'input>
impl<'input> Send for ArrayType<'input>
impl<'input> Sync for ArrayType<'input>
impl<'input> Unpin for ArrayType<'input>
impl<'input> UnwindSafe for ArrayType<'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