pub struct BasePassRef<'a, C> {
pub commands: &'a [C],
pub dynamic_offsets: &'a [DynamicOffset],
pub string_data: &'a [u8],
}Fields§
§commands: &'a [C]§dynamic_offsets: &'a [DynamicOffset]§string_data: &'a [u8]Trait Implementations§
Source§impl<'a, C: Clone> Clone for BasePassRef<'a, C>
impl<'a, C: Clone> Clone for BasePassRef<'a, C>
Source§fn clone(&self) -> BasePassRef<'a, C>
fn clone(&self) -> BasePassRef<'a, C>
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, C: Debug> Debug for BasePassRef<'a, C>
impl<'a, C: Debug> Debug for BasePassRef<'a, C>
impl<'a, C: Copy> Copy for BasePassRef<'a, C>
Auto Trait Implementations§
impl<'a, C> Freeze for BasePassRef<'a, C>
impl<'a, C> RefUnwindSafe for BasePassRef<'a, C>where
C: RefUnwindSafe,
impl<'a, C> Send for BasePassRef<'a, C>where
C: Sync,
impl<'a, C> Sync for BasePassRef<'a, C>where
C: Sync,
impl<'a, C> Unpin for BasePassRef<'a, C>
impl<'a, C> UnwindSafe for BasePassRef<'a, C>where
C: RefUnwindSafe,
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