[−][src]Struct trust_dns_openssl::tls_server::Stack
An owned stack of T
.
Methods
impl<T> Stack<T> where
T: Stackable,
[src]
T: Stackable,
pub fn new() -> Result<Stack<T>, ErrorStack>
[src]
Methods from Deref<Target = StackRef<T>>
pub fn len(&self) -> usize
[src]
Returns the number of items in the stack
pub fn iter(&self) -> Iter<T>
[src]
pub fn iter_mut(&mut self) -> IterMut<T>
[src]
pub fn get(&self, idx: usize) -> Option<&<T as ForeignType>::Ref>
[src]
Returns a reference to the element at the given index in the
stack or None
if the index is out of bounds
pub fn get_mut(&mut self, idx: usize) -> Option<&mut <T as ForeignType>::Ref>
[src]
Returns a mutable reference to the element at the given index in the
stack or None
if the index is out of bounds
pub fn push(&mut self, data: T) -> Result<(), ErrorStack>
[src]
Pushes a value onto the top of the stack.
pub fn pop(&mut self) -> Option<T>
[src]
Removes the last element from the stack and returns it.
Trait Implementations
impl<T> Borrow<StackRef<T>> for Stack<T> where
T: Stackable,
[src]
T: Stackable,
impl<T> AsRef<StackRef<T>> for Stack<T> where
T: Stackable,
[src]
T: Stackable,
impl<T> ForeignType for Stack<T> where
T: Stackable,
[src]
T: Stackable,
type CType = <T as Stackable>::StackType
The raw C type.
type Ref = StackRef<T>
The type representing a reference to this type.
unsafe fn from_ptr(ptr: *mut <T as Stackable>::StackType) -> Stack<T>
[src]
fn as_ptr(&self) -> *mut <T as Stackable>::StackType
[src]
impl<T> Send for Stack<T> where
T: Stackable + Send,
[src]
T: Stackable + Send,
impl<T> Drop for Stack<T> where
T: Stackable,
[src]
T: Stackable,
impl<T> Sync for Stack<T> where
T: Stackable + Sync,
[src]
T: Stackable + Sync,
impl<T> IntoIterator for Stack<T> where
T: Stackable,
[src]
T: Stackable,
type IntoIter = IntoIter<T>
Which kind of iterator are we turning this into?
type Item = T
The type of the elements being iterated over.
fn into_iter(self) -> IntoIter<T>
[src]
impl<'a, T> IntoIterator for &'a Stack<T> where
T: Stackable,
[src]
T: Stackable,
type Item = &'a <T as ForeignType>::Ref
The type of the elements being iterated over.
type IntoIter = Iter<'a, T>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Iter<'a, T>
[src]
impl<'a, T> IntoIterator for &'a mut Stack<T> where
T: Stackable,
[src]
T: Stackable,
type Item = &'a mut <T as ForeignType>::Ref
The type of the elements being iterated over.
type IntoIter = IterMut<'a, T>
Which kind of iterator are we turning this into?
fn into_iter(self) -> IterMut<'a, T>
[src]
impl<T> DerefMut for Stack<T> where
T: Stackable,
[src]
T: Stackable,
impl<T> Deref for Stack<T> where
T: Stackable,
[src]
T: Stackable,
Blanket Implementations
impl<T> From<T> for T
[src]
impl<I> IntoIterator for I where
I: Iterator,
[src]
I: Iterator,
type Item = <I as Iterator>::Item
The type of the elements being iterated over.
type IntoIter = I
Which kind of iterator are we turning this into?
fn into_iter(self) -> I
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,