[][src]Enum rustc_ap_rustc_ast::ast::BorrowKind

pub enum BorrowKind {
    Ref,
    Raw,
}

The kind of borrow in an AddrOf expression, e.g., &place or &raw const place.

Variants

Ref

A normal borrow, &$expr or &mut $expr. The resulting type is either &'a T or &'a mut T where T = typeof($expr) and 'a is some lifetime.

Raw

A raw borrow, &raw const $expr or &raw mut $expr. The resulting type is either *const T or *mut T where T = typeof($expr).

Trait Implementations

impl Clone for BorrowKind[src]

impl Copy for BorrowKind[src]

impl Debug for BorrowKind[src]

impl<__D: Decoder> Decodable<__D> for BorrowKind[src]

impl<__E: Encoder> Encodable<__E> for BorrowKind[src]

impl Eq for BorrowKind[src]

impl<__CTX> HashStable<__CTX> for BorrowKind where
    __CTX: HashStableContext
[src]

impl PartialEq<BorrowKind> for BorrowKind[src]

impl StructuralEq for BorrowKind[src]

impl StructuralPartialEq for BorrowKind[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, T> Captures<'a> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,