Struct simplicity_sys::ffi::bitstream::CBitstream
source · #[repr(C)]pub struct CBitstream {
pub arr: *const c_uchar,
pub len: size_t,
pub offset: c_uchar,
}
Expand description
Stream of bits.
Fields§
§arr: *const c_uchar
§len: size_t
§offset: c_uchar
Trait Implementations§
source§impl Clone for CBitstream
impl Clone for CBitstream
source§fn clone(&self) -> CBitstream
fn clone(&self) -> CBitstream
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl From<&[u8]> for CBitstream
impl From<&[u8]> for CBitstream
source§fn from(sl: &[u8]) -> CBitstream
fn from(sl: &[u8]) -> CBitstream
Converts to this type from the input type.
impl Copy for CBitstream
Auto Trait Implementations§
impl RefUnwindSafe for CBitstream
impl !Send for CBitstream
impl !Sync for CBitstream
impl Unpin for CBitstream
impl UnwindSafe for CBitstream
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