Enum FrameError
#[repr(i32)]pub enum FrameError {
InternalError = 1,
BufferNotUtf8 = 2,
InvalidOrigin = 3,
NoDataInMessage = 4,
}
Expand description
Represents the return status of a [Frame
] method.
Variants§
InternalError = 1
An internal error occurred.
BufferNotUtf8 = 2
The provided buffer is not UTF-8 encoded.
InvalidOrigin = 3
The Frame’s URL does not match any of the origins provided by the caller.
NoDataInMessage = 4
The required data
property is missing from a [WebMessage
].
Implementations§
§impl FrameError
impl FrameError
pub fn from_primitive(prim: i32) -> Option<FrameError>
pub const fn into_primitive(self) -> i32
pub fn is_unknown(&self) -> bool
👎Deprecated: Strict enums should not use
is_unknown
Trait Implementations§
§impl Clone for FrameError
impl Clone for FrameError
§fn clone(&self) -> FrameError
fn clone(&self) -> FrameError
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 more§impl Debug for FrameError
impl Debug for FrameError
§impl<D> Decode<FrameError, D> for FrameErrorwhere
D: ResourceDialect,
impl<D> Decode<FrameError, D> for FrameErrorwhere
D: ResourceDialect,
§fn new_empty() -> FrameError
fn new_empty() -> FrameError
Creates a valid instance of
Self
. The specific value does not matter,
since it will be overwritten by decode
.§impl<D> Encode<FrameError, D> for FrameErrorwhere
D: ResourceDialect,
impl<D> Encode<FrameError, D> for FrameErrorwhere
D: ResourceDialect,
§impl Hash for FrameError
impl Hash for FrameError
§impl Ord for FrameError
impl Ord for FrameError
§impl PartialEq for FrameError
impl PartialEq for FrameError
§impl PartialOrd for FrameError
impl PartialOrd for FrameError
§impl TypeMarker for FrameError
impl TypeMarker for FrameError
§type Owned = FrameError
type Owned = FrameError
The owned Rust type which this FIDL type decodes into.
§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.§impl ValueTypeMarker for FrameError
impl ValueTypeMarker for FrameError
§type Borrowed<'a> = FrameError
type Borrowed<'a> = FrameError
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read more§fn borrow(
value: &<FrameError as TypeMarker>::Owned,
) -> <FrameError as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<FrameError as TypeMarker>::Owned, ) -> <FrameError as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned
to Self::Borrowed
.impl Copy for FrameError
impl Eq for FrameError
impl StructuralPartialEq for FrameError
Auto Trait Implementations§
impl Freeze for FrameError
impl RefUnwindSafe for FrameError
impl Send for FrameError
impl Sync for FrameError
impl Unpin for FrameError
impl UnwindSafe for FrameError
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