Trait snarkvm_circuit_types::Deref

1.0.0 · source ·
pub trait Deref {
    type Target: ?Sized;

    // Required method
    fn deref(&self) -> &Self::Target;
}
Expand description

Used for immutable dereferencing operations, like *v.

In addition to being used for explicit dereferencing operations with the (unary) * operator in immutable contexts, Deref is also used implicitly by the compiler in many circumstances. This mechanism is called Deref coercion’. In mutable contexts, DerefMut is used.

Implementing Deref for smart pointers makes accessing the data behind them convenient, which is why they implement Deref. On the other hand, the rules regarding Deref and DerefMut were designed specifically to accommodate smart pointers. Because of this, Deref should only be implemented for smart pointers to avoid confusion.

For similar reasons, this trait should never fail. Failure during dereferencing can be extremely confusing when Deref is invoked implicitly.

More on Deref coercion

If T implements Deref<Target = U>, and x is a value of type T, then:

  • In immutable contexts, *x (where T is neither a reference nor a raw pointer) is equivalent to *Deref::deref(&x).
  • Values of type &T are coerced to values of type &U
  • T implicitly implements all the (immutable) methods of the type U.

For more details, visit the chapter in The Rust Programming Language as well as the reference sections on the dereference operator, method resolution and type coercions.

Examples

A struct with a single field which is accessible by dereferencing the struct.

use std::ops::Deref;

struct DerefExample<T> {
    value: T
}

impl<T> Deref for DerefExample<T> {
    type Target = T;

    fn deref(&self) -> &Self::Target {
        &self.value
    }
}

let x = DerefExample { value: 'a' };
assert_eq!('a', *x);

Required Associated Types§

source

type Target: ?Sized

The resulting type after dereferencing.

Required Methods§

source

fn deref(&self) -> &Self::Target

Dereferences the value.

Implementors§

source§

impl Deref for CString

§

type Target = CStr

source§

impl Deref for String

§

type Target = str

source§

impl Deref for OsString

source§

impl Deref for PathBuf

§

type Target = Path

source§

impl Deref for Error

§

type Target = dyn Error + Send + Sync

§

impl Deref for BHP_256

§

type Target = BHP<Testnet3, 3, 57>

§

impl Deref for BHP_512

§

type Target = BHP<Testnet3, 6, 43>

§

impl Deref for BHP_768

§

type Target = BHP<Testnet3, 15, 23>

§

impl Deref for BHP_1024

§

type Target = BHP<Testnet3, 8, 54>

§

impl Deref for CREDITS_PROVING_KEYS

§

type Target = IndexMap<String, Arc<CircuitProvingKey<<Console as Environment>::PairingCurve, MarlinHidingMode>, Global>, RandomState>

§

impl Deref for CREDITS_VERIFYING_KEYS

§

type Target = IndexMap<String, Arc<CircuitVerifyingKey<<Console as Environment>::PairingCurve>, Global>, RandomState>

§

impl Deref for ColoredString

§

type Target = str

§

impl Deref for ENCRYPTION_DOMAIN

§

type Target = Field<Testnet3>

§

impl Deref for GENERATOR_G

§

type Target = Vec<Group<Testnet3>, Global>

§

impl Deref for GRAPH_KEY_DOMAIN

§

type Target = Field<Testnet3>

§

impl Deref for INCLUSION_PROVING_KEY

§

impl Deref for INCLUSION_VERIFYING_KEY

§

impl Deref for MARLIN_FS_PARAMETERS

§

type Target = <PoseidonSponge<<<Testnet3 as Environment>::PairingCurve as PairingEngine>::Fq, 2, 1> as AlgebraicSponge<<<Testnet3 as Environment>::PairingCurve as PairingEngine>::Fq, 2>>::Parameters

§

impl Deref for PEDERSEN_64

§

type Target = Pedersen<Testnet3, 64>

§

impl Deref for PEDERSEN_128

§

type Target = Pedersen<Testnet3, 128>

§

impl Deref for POSEIDON_2

§

type Target = Poseidon<Testnet3, 2>

§

impl Deref for POSEIDON_4

§

type Target = Poseidon<Testnet3, 4>

§

impl Deref for POSEIDON_8

§

type Target = Poseidon<Testnet3, 8>

§

impl Deref for SERIAL_NUMBER_DOMAIN

§

type Target = Field<Testnet3>

§

impl Deref for SHOULD_COLORIZE

§

type Target = ShouldColorize

1.36.0 · source§

impl<'a> Deref for IoSlice<'a>

§

type Target = [u8]

1.36.0 · source§

impl<'a> Deref for IoSliceMut<'a>

§

type Target = [u8]

source§

impl<'a> Deref for MaybeUninitSlice<'a>

source§

impl<'a, 'f> Deref for VaList<'a, 'f>where 'f: 'a,

§

type Target = VaListImpl<'f>

§

impl<'a, R, G, T> Deref for MappedReentrantMutexGuard<'a, R, G, T>where R: RawMutex + 'a, G: GetThreadId + 'a, T: 'a + ?Sized,

§

type Target = T

§

impl<'a, R, G, T> Deref for ReentrantMutexGuard<'a, R, G, T>where R: RawMutex + 'a, G: GetThreadId + 'a, T: 'a + ?Sized,

§

type Target = T

§

impl<'a, R, T> Deref for MappedMutexGuard<'a, R, T>where R: RawMutex + 'a, T: 'a + ?Sized,

§

type Target = T

§

impl<'a, R, T> Deref for MappedRwLockReadGuard<'a, R, T>where R: RawRwLock + 'a, T: 'a + ?Sized,

§

type Target = T

§

impl<'a, R, T> Deref for MappedRwLockWriteGuard<'a, R, T>where R: RawRwLock + 'a, T: 'a + ?Sized,

§

type Target = T

§

impl<'a, R, T> Deref for MutexGuard<'a, R, T>where R: RawMutex + 'a, T: 'a + ?Sized,

§

type Target = T

§

impl<'a, R, T> Deref for RwLockReadGuard<'a, R, T>where R: RawRwLock + 'a, T: 'a + ?Sized,

§

type Target = T

§

impl<'a, R, T> Deref for RwLockUpgradableReadGuard<'a, R, T>where R: RawRwLockUpgrade + 'a, T: 'a + ?Sized,

§

type Target = T

§

impl<'a, R, T> Deref for RwLockWriteGuard<'a, R, T>where R: RawRwLock + 'a, T: 'a + ?Sized,

§

type Target = T

source§

impl<'s> Deref for SockRef<'s>

§

impl<A> Deref for SmallVec<A>where A: Array,

§

type Target = [<A as Array>::Item]

source§

impl<B> Deref for Cow<'_, B>where B: ToOwned + ?Sized, <B as ToOwned>::Owned: Borrow<B>,

§

type Target = B

source§

impl<E> Deref for snarkvm_circuit_types::Boolean<E>where E: Environment,

§

impl<E> Deref for Address<E>where E: Environment,

§

type Target = Group<E>

§

impl<E> Deref for Boolean<E>where E: Environment,

§

type Target = bool

§

impl<E> Deref for Field<E>where E: Environment,

§

type Target = <E as Environment>::Field

§

impl<E> Deref for Group<E>where E: Environment,

§

type Target = <E as Environment>::Projective

§

impl<E> Deref for Scalar<E>where E: Environment,

§

type Target = <E as Environment>::Scalar

§

impl<E> Deref for StringType<E>where E: Environment,

§

type Target = str

§

impl<E, I> Deref for Integer<E, I>where E: Environment, I: IntegerType,

§

type Target = I

§

impl<F> Deref for DensePolynomial<F>where F: Field,

§

type Target = [F]

§

impl<F> Deref for LabeledPolynomial<F>where F: Field,

§

type Target = Polynomial<'static, F>

§

impl<F, const PREFIX: u16> Deref for AleoID<F, PREFIX>where F: FieldTrait,

§

type Target = F

source§

impl<L, R> Deref for Either<L, R>where L: Deref, R: Deref<Target = <L as Deref>::Target>,

§

type Target = <L as Deref>::Target

1.33.0 · source§

impl<P> Deref for Pin<P>where P: Deref,

§

type Target = <P as Deref>::Target

source§

impl<T> Deref for &Twhere T: ?Sized,

§

type Target = T

source§

impl<T> Deref for &mut Twhere T: ?Sized,

§

type Target = T

source§

impl<T> Deref for ThinBox<T>where T: ?Sized,

§

type Target = T

source§

impl<T> Deref for UniqueRc<T>

§

type Target = T

source§

impl<T> Deref for Ref<'_, T>where T: ?Sized,

§

type Target = T

source§

impl<T> Deref for RefMut<'_, T>where T: ?Sized,

§

type Target = T

1.20.0 · source§

impl<T> Deref for ManuallyDrop<T>where T: ?Sized,

§

type Target = T

1.9.0 · source§

impl<T> Deref for AssertUnwindSafe<T>

§

type Target = T

source§

impl<T> Deref for std::sync::mutex::MutexGuard<'_, T>where T: ?Sized,

§

type Target = T

source§

impl<T> Deref for std::sync::rwlock::RwLockReadGuard<'_, T>where T: ?Sized,

§

type Target = T

source§

impl<T> Deref for std::sync::rwlock::RwLockWriteGuard<'_, T>where T: ?Sized,

§

type Target = T

§

impl<T> Deref for CachePadded<T>

§

type Target = T

§

impl<T> Deref for Owned<T>where T: Pointable + ?Sized,

§

type Target = T

§

impl<T> Deref for ShardedLockReadGuard<'_, T>where T: ?Sized,

§

type Target = T

§

impl<T> Deref for ShardedLockWriteGuard<'_, T>where T: ?Sized,

§

type Target = T

source§

impl<T, A> Deref for alloc::boxed::Box<T, A>where A: Allocator, T: ?Sized,

§

type Target = T

1.12.0 · source§

impl<T, A> Deref for PeekMut<'_, T, A>where T: Ord, A: Allocator,

§

type Target = T

source§

impl<T, A> Deref for Rc<T, A>where A: Allocator, T: ?Sized,

§

type Target = T

source§

impl<T, A> Deref for Arc<T, A>where A: Allocator, T: ?Sized,

§

type Target = T

source§

impl<T, A> Deref for alloc::vec::Vec<T, A>where A: Allocator,

§

type Target = [T]

§

impl<T, A> Deref for Box<T, A>where A: Allocator, T: ?Sized,

§

type Target = T

§

impl<T, A> Deref for Vec<T, A>where A: Allocator,

§

type Target = [T]

source§

impl<T, F> Deref for LazyCell<T, F>where F: FnOnce() -> T,

§

type Target = T

source§

impl<T, F> Deref for LazyLock<T, F>where F: FnOnce() -> T,

§

type Target = T

§

impl<T, F> Deref for Lazy<T, F>where F: FnOnce() -> T,

§

type Target = T

§

impl<T, F> Deref for Lazy<T, F>where F: FnOnce() -> T,

§

type Target = T

source§

impl<T, F, S> Deref for ScopeGuard<T, F, S>where F: FnOnce(T), S: Strategy,

§

type Target = T

§

impl<T, N> Deref for GenericArray<T, N>where N: ArrayLength<T>,

§

type Target = [T]

source§

impl<T, const CAP: usize> Deref for ArrayVec<T, CAP>

§

type Target = [T]

§

impl<T, const PREFIX: u32, const SIZE_IN_DATA_BYTES: usize> Deref for AleoObject<T, PREFIX, SIZE_IN_DATA_BYTES>where T: Clone + Debug + ToBytes + FromBytes + PartialEq<T> + Eq + Sync + Send,

§

type Target = T

source§

impl<const CAP: usize> Deref for ArrayString<CAP>

§

type Target = str