pub struct Array<'a, T: 'a, const N: usize>(/* private fields */);
Implementations§
Trait Implementations§
Source§impl<'a, T: Follow<'a> + 'a, const N: usize> Follow<'a> for Array<'a, T, N>
impl<'a, T: Follow<'a> + 'a, const N: usize> Follow<'a> for Array<'a, T, N>
Implement Follow for all possible Arrays that have Follow-able elements.
impl<'a, T: Copy + 'a, const N: usize> Copy for Array<'a, T, N>
Auto Trait Implementations§
impl<'a, T, const N: usize> Freeze for Array<'a, T, N>
impl<'a, T, const N: usize> RefUnwindSafe for Array<'a, T, N>where
T: RefUnwindSafe,
impl<'a, T, const N: usize> Send for Array<'a, T, N>where
T: Send,
impl<'a, T, const N: usize> Sync for Array<'a, T, N>where
T: Sync,
impl<'a, T, const N: usize> Unpin for Array<'a, T, N>where
T: Unpin,
impl<'a, T, const N: usize> UnwindSafe for Array<'a, T, N>where
T: UnwindSafe,
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