Searched defs:BitError (Results 1 – 5 of 5) sorted by relevance
| /xiu/library/bytesio/src/ |
| H A D | bits_errors.rs | 20 pub struct BitError { struct 21 pub value: BitErrorValue, argument 24 impl From<BitErrorValue> for BitError { implementation 30 impl From<BytesReadError> for BitError { implementation 38 impl From<BytesWriteError> for BitError { implementation 54 impl fmt::Display for BitError { implementation 60 impl Fail for BitError { implementation
|
| H A D | bits_writer.rs | 24 pub fn write_bytes(&mut self, data: BytesMut) -> Result<(), BitError> { in write_bytes() argument 29 pub fn write_bit(&mut self, b: u8) -> Result<(), BitError> { in write_bit() argument 42 pub fn write_8bit(&mut self, b: u8) -> Result<(), BitError> { in write_8bit() argument 53 fn flush(&mut self) -> Result<(), BitError> { in flush() argument 66 pub fn write_n_bits(&mut self, data: u64, bit_num: usize) -> Result<(), BitError> { in write_n_bits() argument 109 pub fn bits_aligment_8(&mut self) -> Result<(), BitError> { in bits_aligment_8() argument
|
| H A D | bits_reader.rs | 34 pub fn read_byte(&mut self) -> Result<u8, BitError> { in read_byte() argument 45 pub fn read_bit(&mut self) -> Result<u8, BitError> { in read_bit() argument 54 pub fn read_n_bits(&mut self, n: usize) -> Result<u64, BitError> { in read_n_bits() argument
|
| /xiu/library/codec/h264/src/ |
| H A D | errors.rs | 8 BitError(BitError), enumerator
|
| /xiu/library/container/flv/src/ |
| H A D | errors.rs | 157 BitError(#[cause] BitError), enumerator
|