#[repr(C)]pub struct aws_linked_list {
pub head: aws_linked_list_node,
pub tail: aws_linked_list_node,
}
Fields
head: aws_linked_list_node
tail: aws_linked_list_node
Trait Implementations
sourceimpl Clone for aws_linked_list
impl Clone for aws_linked_list
sourcefn clone(&self) -> aws_linked_list
fn clone(&self) -> aws_linked_list
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for aws_linked_list
impl Debug for aws_linked_list
sourceimpl Default for aws_linked_list
impl Default for aws_linked_list
sourceimpl PartialEq<aws_linked_list> for aws_linked_list
impl PartialEq<aws_linked_list> for aws_linked_list
sourcefn eq(&self, other: &aws_linked_list) -> bool
fn eq(&self, other: &aws_linked_list) -> bool
impl Copy for aws_linked_list
impl Eq for aws_linked_list
impl StructuralEq for aws_linked_list
impl StructuralPartialEq for aws_linked_list
Auto Trait Implementations
impl RefUnwindSafe for aws_linked_list
impl !Send for aws_linked_list
impl !Sync for aws_linked_list
impl Unpin for aws_linked_list
impl UnwindSafe for aws_linked_list
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more