#[repr(C)]pub struct aws_string {
pub allocator: *mut aws_allocator,
pub len: usize,
pub bytes: [u8; 1],
}
Fields
allocator: *mut aws_allocator
len: usize
bytes: [u8; 1]
Trait Implementations
sourceimpl Clone for aws_string
impl Clone for aws_string
sourcefn clone(&self) -> aws_string
fn clone(&self) -> aws_string
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_string
impl Debug for aws_string
sourceimpl Default for aws_string
impl Default for aws_string
sourceimpl PartialEq<aws_string> for aws_string
impl PartialEq<aws_string> for aws_string
sourcefn eq(&self, other: &aws_string) -> bool
fn eq(&self, other: &aws_string) -> bool
impl Copy for aws_string
impl Eq for aws_string
impl StructuralEq for aws_string
impl StructuralPartialEq for aws_string
Auto Trait Implementations
impl RefUnwindSafe for aws_string
impl !Send for aws_string
impl !Sync for aws_string
impl Unpin for aws_string
impl UnwindSafe for aws_string
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