Struct hickory_proto::openssl::tls_server::Stack
source · pub struct Stack<T>(/* private fields */)
where
T: Stackable;
Available on crate feature
dns-over-openssl
only.Expand description
An owned stack of T
.
Implementations§
Methods from Deref<Target = StackRef<T>>§
pub fn iter(&self) -> Iter<'_, T>
pub fn iter_mut(&mut self) -> IterMut<'_, T>
sourcepub fn get(&self, idx: usize) -> Option<&<T as ForeignType>::Ref>
pub fn get(&self, idx: usize) -> Option<&<T as ForeignType>::Ref>
Returns a reference to the element at the given index in the
stack or None
if the index is out of bounds
sourcepub fn get_mut(&mut self, idx: usize) -> Option<&mut <T as ForeignType>::Ref>
pub fn get_mut(&mut self, idx: usize) -> Option<&mut <T as ForeignType>::Ref>
Returns a mutable reference to the element at the given index in the
stack or None
if the index is out of bounds
sourcepub fn push(&mut self, data: T) -> Result<(), ErrorStack>
pub fn push(&mut self, data: T) -> Result<(), ErrorStack>
Pushes a value onto the top of the stack.
Trait Implementations§
source§impl<T> ForeignType for Stack<T>where
T: Stackable,
impl<T> ForeignType for Stack<T>where
T: Stackable,
source§impl<'a, T> IntoIterator for &'a Stack<T>where
T: Stackable,
impl<'a, T> IntoIterator for &'a Stack<T>where
T: Stackable,
source§impl<'a, T> IntoIterator for &'a mut Stack<T>where
T: Stackable,
impl<'a, T> IntoIterator for &'a mut Stack<T>where
T: Stackable,
source§impl<T> IntoIterator for Stack<T>where
T: Stackable,
impl<T> IntoIterator for Stack<T>where
T: Stackable,
impl<T> Send for Stack<T>
impl<T> Sync for Stack<T>
Auto Trait Implementations§
impl<T> Freeze for Stack<T>
impl<T> RefUnwindSafe for Stack<T>
impl<T> Unpin for Stack<T>
impl<T> UnwindSafe for Stack<T>
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