Home
last modified time | relevance | path

Searched refs:BufferTooShortError (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/quiche/src/
Doctets.rs37 pub type Result<T> = std::result::Result<T, BufferTooShortError>;
43 pub struct BufferTooShortError; struct
45 impl std::fmt::Display for BufferTooShortError { implementation
51 impl std::error::Error for BufferTooShortError { implementation
63 return Err(BufferTooShortError);
93 return Err(BufferTooShortError);
183 return Err(BufferTooShortError); in get_varint()
208 return Err(BufferTooShortError); in get_bytes()
248 return Err(BufferTooShortError); in peek_bytes()
262 return Err(BufferTooShortError); in slice()
[all …]
Dlib.rs405 impl std::convert::From<octets::BufferTooShortError> for Error {
406 fn from(_err: octets::BufferTooShortError) -> Self { in from()
/external/rust/crates/quiche/src/h3/qpack/
Dmod.rs73 impl std::convert::From<crate::octets::BufferTooShortError> for Error {
74 fn from(_err: crate::octets::BufferTooShortError) -> Self { in from()
/external/rust/crates/quiche/src/h3/
Dmod.rs398 impl std::convert::From<octets::BufferTooShortError> for Error {
399 fn from(_err: octets::BufferTooShortError) -> Self { in from()