Lines Matching full:wrapped
157 //! of Rust's usual guarantees about the wrapped type. Access to the wrapped
171 //! [`Opaque<T>`] will usually be wrapped one level further, so that
566 /// Immutably borrows the wrapped value.
619 /// Mutably borrows the wrapped value.
1028 /// Converts a raw pointer to the wrapped type.
1077 /// type Wrapped = String;
1083 /// `Self` must be a `#[repr(transparent)]` wrapper for the `Wrapped` type,
1092 /// pub const unsafe fn from_raw<'a>(value: *mut Self::Wrapped) -> &'a Self;
1093 /// pub const unsafe fn as_mut_ptr(&self) -> *mut Self::Wrapped;
1094 /// pub const unsafe fn as_ptr(&self) -> *const Self::Wrapped;
1095 /// pub const unsafe fn raw_get(slot: *mut Self) -> *const Self::Wrapped;
1100 type Wrapped; typedef
1104 type Wrapped = T; typedef