Struct solana_perf::cuda_runtime::PinnedVec

source ·
pub struct PinnedVec<T: Default + Clone + Sized> { /* private fields */ }

Implementations§

source§

impl<T: Clone + Default + Sized> PinnedVec<T>

source

pub fn iter(&self) -> Iter<'_, T>

source

pub fn iter_mut(&mut self) -> IterMut<'_, T>

source

pub fn capacity(&self) -> usize

source§

impl<T: Clone + Default + Sized> PinnedVec<T>

source

pub fn reserve(&mut self, size: usize)

source

pub fn reserve_and_pin(&mut self, size: usize)

source

pub fn set_pinnable(&mut self)

source

pub fn copy_from_slice(&mut self, data: &[T])
where T: Copy,

source

pub fn from_vec(source: Vec<T>) -> Self

source

pub fn with_capacity(capacity: usize) -> Self

source

pub fn is_empty(&self) -> bool

source

pub fn len(&self) -> usize

source

pub fn as_ptr(&self) -> *const T

source

pub fn as_mut_ptr(&mut self) -> *mut T

source

pub fn push(&mut self, x: T)

source

pub fn truncate(&mut self, size: usize)

source

pub fn resize(&mut self, size: usize, elem: T)

source

pub fn append(&mut self, other: &mut Vec<T>)

source

pub fn append_pinned(&mut self, other: &mut Self)

source

pub unsafe fn set_len(&mut self, size: usize)

Forces the length of the vector to new_len.

This is a low-level operation that maintains none of the normal invariants of the type. Normally changing the length of a vector is done using one of the safe operations instead, such as truncate, resize, extend, or clear.

§Safety
  • new_len must be less than or equal to capacity().
  • The elements at old_len..new_len must be initialized.
source

pub fn shuffle<R: Rng>(&mut self, rng: &mut R)

Trait Implementations§

source§

impl<T: Default + Clone + Sized> AbiExample for PinnedVec<T>

source§

fn example() -> Self

source§

impl<T: Clone + Default + Sized> Clone for PinnedVec<T>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug + Default + Clone + Sized> Debug for PinnedVec<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: Default + Default + Clone + Sized> Default for PinnedVec<T>

source§

fn default() -> PinnedVec<T>

Returns the “default value” for a type. Read more
source§

impl<'de, T> Deserialize<'de> for PinnedVec<T>
where T: Deserialize<'de> + Default + Default + Clone + Sized,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<T: Sized + Default + Clone> Drop for PinnedVec<T>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<T: Clone + Default + Sized> From<PinnedVec<T>> for Vec<T>

source§

fn from(pinned_vec: PinnedVec<T>) -> Self

Converts to this type from the input type.
source§

impl<T: Clone + Default + Sized, I: SliceIndex<[T]>> Index<I> for PinnedVec<T>

§

type Output = <I as SliceIndex<[T]>>::Output

The returned type after indexing.
source§

fn index(&self, index: I) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl<T: Clone + Default + Sized, I: SliceIndex<[T]>> IndexMut<I> for PinnedVec<T>

source§

fn index_mut(&mut self, index: I) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<'a, T: Clone + Default + Sized> IntoIterator for &'a PinnedVec<T>

§

type Item = &'a T

The type of the elements being iterated over.
§

type IntoIter = Iter<'a, T>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, T: Clone + Send + Sync + Default + Sized> IntoParallelIterator for &'a PinnedVec<T>

§

type Iter = Iter<'a, T>

The parallel iterator type that will be created.
§

type Item = &'a T

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> Self::Iter

Converts self into a parallel iterator. Read more
source§

impl<'a, T: Clone + Send + Sync + Default + Sized> IntoParallelIterator for &'a mut PinnedVec<T>

§

type Iter = IterMut<'a, T>

The parallel iterator type that will be created.
§

type Item = &'a mut T

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> Self::Iter

Converts self into a parallel iterator. Read more
source§

impl<T: Default + Clone + Sized> Reset for PinnedVec<T>

source§

fn reset(&mut self)

source§

fn warm(&mut self, size_hint: usize)

source§

fn set_recycler(&mut self, recycler: Weak<RecyclerX<Self>>)

source§

impl<T> Serialize for PinnedVec<T>
where T: Serialize + Default + Clone + Sized,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl<T> Freeze for PinnedVec<T>

§

impl<T> RefUnwindSafe for PinnedVec<T>
where T: RefUnwindSafe,

§

impl<T> Send for PinnedVec<T>
where T: Send,

§

impl<T> Sync for PinnedVec<T>
where T: Sync + Send,

§

impl<T> Unpin for PinnedVec<T>
where T: Unpin,

§

impl<T> UnwindSafe for PinnedVec<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> AbiEnumVisitor for T
where T: Serialize + AbiExample + ?Sized,

source§

default fn visit_for_abi( &self, digester: &mut AbiDigester ) -> Result<AbiDigester, DigestError>

source§

impl<T> AbiEnumVisitor for T
where T: Serialize + ?Sized,

source§

default fn visit_for_abi( &self, _digester: &mut AbiDigester ) -> Result<AbiDigester, DigestError>

source§

impl<T> AbiExample for T

source§

default fn example() -> T

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Ctx, I, R> Cread<Ctx, I> for R
where Ctx: Copy, R: Index<I> + Index<RangeFrom<I>> + ?Sized,

source§

fn cread_with<N>(&self, offset: I, ctx: Ctx) -> N
where N: FromCtx<Ctx, Self::Output>,

Reads a value from Self at offset with ctx. Cannot fail. If the buffer is too small for the value requested, this will panic. Read more
source§

fn cread<N>(&self, offset: I) -> N
where N: FromCtx<Ctx, Self::Output>, Ctx: Default,

Reads a value implementing FromCtx from Self at offset, with the target machine’s endianness. For the primitive types, this will be the target machine’s endianness. Read more
source§

impl<Ctx, I, W> Cwrite<Ctx, I> for W
where Ctx: Copy, W: Index<I> + IndexMut<RangeFrom<I>> + ?Sized,

source§

fn cwrite<N>(&mut self, n: N, offset: I)
where N: IntoCtx<Ctx, Self::Output>, Ctx: Default,

Writes n into Self at offset; uses default context. For the primitive types, this will be the target machine’s endianness. Read more
source§

fn cwrite_with<N>(&mut self, n: N, offset: I, ctx: Ctx)
where N: IntoCtx<Ctx, Self::Output>,

Writes n into Self at offset with ctx Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<'data, I> IntoParallelRefIterator<'data> for I
where I: 'data + ?Sized, &'data I: IntoParallelIterator,

§

type Iter = <&'data I as IntoParallelIterator>::Iter

The type of the parallel iterator that will be returned.
§

type Item = <&'data I as IntoParallelIterator>::Item

The type of item that the parallel iterator will produce. This will typically be an &'data T reference type.
source§

fn par_iter(&'data self) -> <I as IntoParallelRefIterator<'data>>::Iter

Converts self into a parallel iterator. Read more
source§

impl<'data, I> IntoParallelRefMutIterator<'data> for I

§

type Iter = <&'data mut I as IntoParallelIterator>::Iter

The type of iterator that will be created.
§

type Item = <&'data mut I as IntoParallelIterator>::Item

The type of item that will be produced; this is typically an &'data mut T reference.
source§

fn par_iter_mut( &'data mut self ) -> <I as IntoParallelRefMutIterator<'data>>::Iter

Creates the parallel iterator from self. Read more
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

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

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,