pub enum FlatlandFactoryError {
InvalidArgs,
Internal,
// some variants omitted
}Expand description
An error that can occur when using [fuchsia.ui.composition/FlatlandFactory.CreateFlatland].
Variants§
InvalidArgs
Client provided an invalid configuration, so no Flatland session could be created.
Internal
The server was unable to establish the Flatland session for an unspecified reason that is not the client’s fault.
Implementations§
Source§impl FlatlandFactoryError
impl FlatlandFactoryError
pub fn from_primitive(prim: u32) -> Option<FlatlandFactoryError>
pub fn from_primitive_allow_unknown(prim: u32) -> FlatlandFactoryError
pub fn unknown() -> FlatlandFactoryError
pub const fn into_primitive(self) -> u32
pub fn is_unknown(&self) -> bool
Trait Implementations§
Source§impl Clone for FlatlandFactoryError
impl Clone for FlatlandFactoryError
Source§fn clone(&self) -> FlatlandFactoryError
fn clone(&self) -> FlatlandFactoryError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FlatlandFactoryError
Source§impl Debug for FlatlandFactoryError
impl Debug for FlatlandFactoryError
Source§impl<D> Decode<FlatlandFactoryError, D> for FlatlandFactoryErrorwhere
D: ResourceDialect,
impl<D> Decode<FlatlandFactoryError, D> for FlatlandFactoryErrorwhere
D: ResourceDialect,
Source§fn new_empty() -> FlatlandFactoryError
fn new_empty() -> FlatlandFactoryError
Creates a valid instance of
Self. The specific value does not matter,
since it will be overwritten by decode.Source§impl<D> Encode<FlatlandFactoryError, D> for FlatlandFactoryErrorwhere
D: ResourceDialect,
impl<D> Encode<FlatlandFactoryError, D> for FlatlandFactoryErrorwhere
D: ResourceDialect,
impl Eq for FlatlandFactoryError
Source§impl Hash for FlatlandFactoryError
impl Hash for FlatlandFactoryError
Source§impl Ord for FlatlandFactoryError
impl Ord for FlatlandFactoryError
Source§fn cmp(&self, other: &FlatlandFactoryError) -> Ordering
fn cmp(&self, other: &FlatlandFactoryError) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for FlatlandFactoryError
impl PartialEq for FlatlandFactoryError
Source§impl PartialOrd for FlatlandFactoryError
impl PartialOrd for FlatlandFactoryError
impl StructuralPartialEq for FlatlandFactoryError
Source§impl TypeMarker for FlatlandFactoryError
impl TypeMarker for FlatlandFactoryError
Source§type Owned = FlatlandFactoryError
type Owned = FlatlandFactoryError
The owned Rust type which this FIDL type decodes into.
Source§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.
Source§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.Source§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 moreSource§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.Source§impl ValueTypeMarker for FlatlandFactoryError
impl ValueTypeMarker for FlatlandFactoryError
Source§type Borrowed<'a> = FlatlandFactoryError
type Borrowed<'a> = FlatlandFactoryError
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned. There are three cases: Read moreSource§fn borrow(
value: &<FlatlandFactoryError as TypeMarker>::Owned,
) -> <FlatlandFactoryError as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<FlatlandFactoryError as TypeMarker>::Owned, ) -> <FlatlandFactoryError as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned to Self::Borrowed.Auto Trait Implementations§
impl Freeze for FlatlandFactoryError
impl RefUnwindSafe for FlatlandFactoryError
impl Send for FlatlandFactoryError
impl Sync for FlatlandFactoryError
impl Unpin for FlatlandFactoryError
impl UnsafeUnpin for FlatlandFactoryError
impl UnwindSafe for FlatlandFactoryError
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