Struct fidl_fuchsia_ui_gfx::SetRotationCmd
source · pub struct SetRotationCmd {
pub id: u32,
pub value: QuaternionValue,
}
Expand description
Sets a Resource’s (typically a Node’s) rotation.
Constraints:
id
refs a Resource with the has_transform characteristic.
Discussion: Quaternions represent any rotation in a 3D coordinate system. Consisting of [a,b,c,d], [a] represents the amount of rotation that should be applied and [b,c,d] represents the vector around which the rotation is applied. This conforms to the semantics of glm::quat.
Fields§
§id: u32
§value: QuaternionValue
Trait Implementations§
source§impl Clone for SetRotationCmd
impl Clone for SetRotationCmd
source§fn clone(&self) -> SetRotationCmd
fn clone(&self) -> SetRotationCmd
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 Debug for SetRotationCmd
impl Debug for SetRotationCmd
source§impl Decode<SetRotationCmd> for SetRotationCmd
impl Decode<SetRotationCmd> for SetRotationCmd
source§impl Encode<SetRotationCmd> for &SetRotationCmd
impl Encode<SetRotationCmd> for &SetRotationCmd
source§impl<T0: Encode<u32>, T1: Encode<QuaternionValue>> Encode<SetRotationCmd> for (T0, T1)
impl<T0: Encode<u32>, T1: Encode<QuaternionValue>> Encode<SetRotationCmd> for (T0, T1)
source§impl PartialEq<SetRotationCmd> for SetRotationCmd
impl PartialEq<SetRotationCmd> for SetRotationCmd
source§fn eq(&self, other: &SetRotationCmd) -> bool
fn eq(&self, other: &SetRotationCmd) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<SetRotationCmd> for SetRotationCmd
impl PartialOrd<SetRotationCmd> for SetRotationCmd
source§fn partial_cmp(&self, other: &SetRotationCmd) -> Option<Ordering>
fn partial_cmp(&self, other: &SetRotationCmd) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl TypeMarker for SetRotationCmd
impl TypeMarker for SetRotationCmd
§type Owned = SetRotationCmd
type Owned = SetRotationCmd
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
.§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.source§impl ValueTypeMarker for SetRotationCmd
impl ValueTypeMarker for SetRotationCmd
§type Borrowed<'a> = &'a <SetRotationCmd as TypeMarker>::Owned
type Borrowed<'a> = &'a <SetRotationCmd as TypeMarker>::Owned
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