Enum syn::PointerMutability
source · pub enum PointerMutability {
Const(Const),
Mut(Mut),
}
Expand description
Mutability of a raw pointer (*const T
, *mut T
), in which non-mutable
isn’t the implicit default.
Variants§
Trait Implementations§
source§impl Clone for PointerMutability
impl Clone for PointerMutability
source§impl Debug for PointerMutability
impl Debug for PointerMutability
source§impl Hash for PointerMutability
impl Hash for PointerMutability
source§impl Parse for PointerMutability
impl Parse for PointerMutability
fn parse(input: ParseStream<'_>) -> Result<Self>
source§impl PartialEq for PointerMutability
impl PartialEq for PointerMutability
source§impl ToTokens for PointerMutability
impl ToTokens for PointerMutability
source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
impl Eq for PointerMutability
Auto Trait Implementations§
impl Freeze for PointerMutability
impl RefUnwindSafe for PointerMutability
impl !Send for PointerMutability
impl !Sync for PointerMutability
impl Unpin for PointerMutability
impl UnwindSafe for PointerMutability
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Spanned for Twhere
T: Spanned + ?Sized,
impl<T> Spanned for Twhere
T: Spanned + ?Sized,
source§fn span(&self) -> Span
fn span(&self) -> Span
Returns a
Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty.