pub struct ChildIDRef<'a>(pub *const ITEMIDLIST, _);Expand description
This has the same memory representation as ChildID,
but represents a borrowed ID list pointer.
You should only use this in C arrays/structs, otherwise &ChildID is enough and more idiomatic.
Tuple Fields§
§0: *const ITEMIDLISTImplementations§
Trait Implementations§
Source§impl<'a> Clone for ChildIDRef<'a>
impl<'a> Clone for ChildIDRef<'a>
Source§fn clone(&self) -> ChildIDRef<'a>
fn clone(&self) -> ChildIDRef<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for ChildIDRef<'a>
Source§impl<'a> Debug for ChildIDRef<'a>
impl<'a> Debug for ChildIDRef<'a>
Source§impl<'a> Deref for ChildIDRef<'a>
impl<'a> Deref for ChildIDRef<'a>
Auto Trait Implementations§
impl<'a> !Send for ChildIDRef<'a>
impl<'a> !Sync for ChildIDRef<'a>
impl<'a> Freeze for ChildIDRef<'a>
impl<'a> RefUnwindSafe for ChildIDRef<'a>
impl<'a> Unpin for ChildIDRef<'a>
impl<'a> UnsafeUnpin for ChildIDRef<'a>
impl<'a> UnwindSafe for ChildIDRef<'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