Struct style::logical_geometry::WritingMode
source · #[repr(C)]pub struct WritingMode(u8);
Tuple Fields§
§0: u8
Implementations§
source§impl WritingMode
impl WritingMode
sourcepub const VERTICAL: Self = _
pub const VERTICAL: Self = _
A vertical writing mode; writing-mode is vertical-rl, vertical-lr, sideways-lr, or sideways-rl.
sourcepub const INLINE_REVERSED: Self = _
pub const INLINE_REVERSED: Self = _
The inline flow direction is reversed against the physical direction (i.e. right-to-left or bottom-to-top); writing-mode is sideways-lr or direction is rtl (but not both).
(This bit can be derived from the others, but we store it for convenience.)
sourcepub const VERTICAL_LR: Self = _
pub const VERTICAL_LR: Self = _
A vertical writing mode whose block progression direction is left- to-right; writing-mode is vertical-lr or sideways-lr.
Never set without VERTICAL.
sourcepub const LINE_INVERTED: Self = _
pub const LINE_INVERTED: Self = _
The line-over/line-under sides are inverted with respect to the block-start/block-end edge; writing-mode is vertical-lr.
Never set without VERTICAL and VERTICAL_LR.
sourcepub const VERTICAL_SIDEWAYS: Self = _
pub const VERTICAL_SIDEWAYS: Self = _
All text within a vertical writing mode is displayed sideways and runs top-to-bottom or bottom-to-top; set in these cases:
- writing-mode: sideways-rl;
- writing-mode: sideways-lr;
Never set without VERTICAL.
sourcepub const TEXT_SIDEWAYS: Self = _
pub const TEXT_SIDEWAYS: Self = _
Similar to VERTICAL_SIDEWAYS, but is set via text-orientation; set in these cases:
- writing-mode: vertical-rl; text-orientation: sideways;
- writing-mode: vertical-lr; text-orientation: sideways;
Never set without VERTICAL.
source§impl WritingMode
impl WritingMode
sourcepub const fn bits(&self) -> u8
pub const fn bits(&self) -> u8
Get the underlying bits value.
The returned value is exactly the bits set in this flags value.
sourcepub const fn from_bits(bits: u8) -> Option<Self>
pub const fn from_bits(bits: u8) -> Option<Self>
Convert from a bits value.
This method will return None
if any unknown bits are set.
sourcepub const fn from_bits_truncate(bits: u8) -> Self
pub const fn from_bits_truncate(bits: u8) -> Self
Convert from a bits value, unsetting any unknown bits.
sourcepub const fn from_bits_retain(bits: u8) -> Self
pub const fn from_bits_retain(bits: u8) -> Self
Convert from a bits value exactly.
sourcepub fn from_name(name: &str) -> Option<Self>
pub fn from_name(name: &str) -> Option<Self>
Get a flags value with the bits of a flag with the given name set.
This method will return None
if name
is empty or doesn’t
correspond to any named flag.
sourcepub const fn intersects(&self, other: Self) -> bool
pub const fn intersects(&self, other: Self) -> bool
Whether any set bits in a source flags value are also set in a target flags value.
sourcepub const fn contains(&self, other: Self) -> bool
pub const fn contains(&self, other: Self) -> bool
Whether all set bits in a source flags value are also set in a target flags value.
sourcepub fn remove(&mut self, other: Self)
pub fn remove(&mut self, other: Self)
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
remove
won’t truncate other
, but the !
operator will.
sourcepub fn toggle(&mut self, other: Self)
pub fn toggle(&mut self, other: Self)
The bitwise exclusive-or (^
) of the bits in two flags values.
sourcepub fn set(&mut self, other: Self, value: bool)
pub fn set(&mut self, other: Self, value: bool)
Call insert
when value
is true
or remove
when value
is false
.
sourcepub const fn intersection(self, other: Self) -> Self
pub const fn intersection(self, other: Self) -> Self
The bitwise and (&
) of the bits in two flags values.
sourcepub const fn union(self, other: Self) -> Self
pub const fn union(self, other: Self) -> Self
The bitwise or (|
) of the bits in two flags values.
sourcepub const fn difference(self, other: Self) -> Self
pub const fn difference(self, other: Self) -> Self
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
sourcepub const fn symmetric_difference(self, other: Self) -> Self
pub const fn symmetric_difference(self, other: Self) -> Self
The bitwise exclusive-or (^
) of the bits in two flags values.
sourcepub const fn complement(self) -> Self
pub const fn complement(self) -> Self
The bitwise negation (!
) of the bits in a flags value, truncating the result.
source§impl WritingMode
impl WritingMode
sourcepub const fn iter(&self) -> Iter<WritingMode>
pub const fn iter(&self) -> Iter<WritingMode>
Yield a set of contained flags values.
Each yielded flags value will correspond to a defined named flag. Any unknown bits will be yielded together as a final flags value.
sourcepub const fn iter_names(&self) -> IterNames<WritingMode>
pub const fn iter_names(&self) -> IterNames<WritingMode>
Yield a set of contained named flags values.
This method is like iter
, except only yields bits in contained named flags.
Any unknown bits, or bits not corresponding to a contained flag will not be yielded.
source§impl WritingMode
impl WritingMode
sourcepub fn new(inheritedbox_style: &InheritedBox) -> Self
pub fn new(inheritedbox_style: &InheritedBox) -> Self
Return a WritingMode bitflags from the relevant CSS properties.
sourcepub fn horizontal_tb() -> Self
pub fn horizontal_tb() -> Self
Returns the horizontal-tb
value.
pub fn is_vertical(&self) -> bool
pub fn is_horizontal(&self) -> bool
sourcepub fn is_vertical_lr(&self) -> bool
pub fn is_vertical_lr(&self) -> bool
Assuming .is_vertical(), does the block direction go left to right?
sourcepub fn is_inline_tb(&self) -> bool
pub fn is_inline_tb(&self) -> bool
Assuming .is_vertical(), does the inline direction go top to bottom?
pub fn is_bidi_ltr(&self) -> bool
pub fn is_sideways(&self) -> bool
pub fn is_upright(&self) -> bool
sourcepub fn line_left_is_inline_start(&self) -> bool
pub fn line_left_is_inline_start(&self) -> bool
https://drafts.csswg.org/css-writing-modes/#logical-to-physical
Return | line-left is… | line-right is… |
---|---|---|
true | inline-start | inline-end |
false | inline-end | inline-start |
pub fn inline_start_physical_side(&self) -> PhysicalSide
pub fn inline_end_physical_side(&self) -> PhysicalSide
pub fn block_start_physical_side(&self) -> PhysicalSide
pub fn block_end_physical_side(&self) -> PhysicalSide
pub fn start_start_physical_corner(&self) -> PhysicalCorner
pub fn start_end_physical_corner(&self) -> PhysicalCorner
pub fn end_start_physical_corner(&self) -> PhysicalCorner
pub fn end_end_physical_corner(&self) -> PhysicalCorner
pub fn block_flow_direction(&self) -> BlockFlowDirection
pub fn inline_base_direction(&self) -> InlineBaseDirection
sourcepub fn to_bidi_level(&self) -> Level
pub fn to_bidi_level(&self) -> Level
The default bidirectional embedding level for this writing mode.
Returns bidi level 0 if the mode is LTR, or 1 otherwise.
sourcepub fn is_text_vertical(&self) -> bool
pub fn is_text_vertical(&self) -> bool
Is the text layout vertical?
Trait Implementations§
source§impl Binary for WritingMode
impl Binary for WritingMode
source§impl BitAnd for WritingMode
impl BitAnd for WritingMode
source§impl BitAndAssign for WritingMode
impl BitAndAssign for WritingMode
source§fn bitand_assign(&mut self, other: Self)
fn bitand_assign(&mut self, other: Self)
The bitwise and (&
) of the bits in two flags values.
source§impl BitOr for WritingMode
impl BitOr for WritingMode
source§fn bitor(self, other: WritingMode) -> Self
fn bitor(self, other: WritingMode) -> Self
The bitwise or (|
) of the bits in two flags values.
§type Output = WritingMode
type Output = WritingMode
|
operator.source§impl BitOrAssign for WritingMode
impl BitOrAssign for WritingMode
source§fn bitor_assign(&mut self, other: Self)
fn bitor_assign(&mut self, other: Self)
The bitwise or (|
) of the bits in two flags values.
source§impl BitXor for WritingMode
impl BitXor for WritingMode
source§impl BitXorAssign for WritingMode
impl BitXorAssign for WritingMode
source§fn bitxor_assign(&mut self, other: Self)
fn bitxor_assign(&mut self, other: Self)
The bitwise exclusive-or (^
) of the bits in two flags values.
source§impl Clone for WritingMode
impl Clone for WritingMode
source§fn clone(&self) -> WritingMode
fn clone(&self) -> WritingMode
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for WritingMode
impl Debug for WritingMode
source§impl Display for WritingMode
impl Display for WritingMode
source§impl Extend<WritingMode> for WritingMode
impl Extend<WritingMode> for WritingMode
source§fn extend<T: IntoIterator<Item = Self>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = Self>>(&mut self, iterator: T)
The bitwise or (|
) of the bits in each flags value.
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)source§impl Flags for WritingMode
impl Flags for WritingMode
source§const FLAGS: &'static [Flag<WritingMode>] = _
const FLAGS: &'static [Flag<WritingMode>] = _
source§fn from_bits_retain(bits: u8) -> WritingMode
fn from_bits_retain(bits: u8) -> WritingMode
source§fn from_bits_truncate(bits: Self::Bits) -> Self
fn from_bits_truncate(bits: Self::Bits) -> Self
source§fn from_name(name: &str) -> Option<Self>
fn from_name(name: &str) -> Option<Self>
source§fn iter_names(&self) -> IterNames<Self>
fn iter_names(&self) -> IterNames<Self>
source§fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
source§fn contains(&self, other: Self) -> boolwhere
Self: Sized,
fn contains(&self, other: Self) -> boolwhere
Self: Sized,
source§fn insert(&mut self, other: Self)where
Self: Sized,
fn insert(&mut self, other: Self)where
Self: Sized,
|
) of the bits in two flags values.source§fn remove(&mut self, other: Self)where
Self: Sized,
fn remove(&mut self, other: Self)where
Self: Sized,
&!
). Read moresource§fn toggle(&mut self, other: Self)where
Self: Sized,
fn toggle(&mut self, other: Self)where
Self: Sized,
^
) of the bits in two flags values.source§fn intersection(self, other: Self) -> Self
fn intersection(self, other: Self) -> Self
&
) of the bits in two flags values.source§fn difference(self, other: Self) -> Self
fn difference(self, other: Self) -> Self
&!
). Read moresource§fn symmetric_difference(self, other: Self) -> Self
fn symmetric_difference(self, other: Self) -> Self
^
) of the bits in two flags values.source§fn complement(self) -> Self
fn complement(self) -> Self
!
) of the bits in a flags value, truncating the result.source§impl FromIterator<WritingMode> for WritingMode
impl FromIterator<WritingMode> for WritingMode
source§fn from_iter<T: IntoIterator<Item = Self>>(iterator: T) -> Self
fn from_iter<T: IntoIterator<Item = Self>>(iterator: T) -> Self
The bitwise or (|
) of the bits in each flags value.
source§impl IntoIterator for WritingMode
impl IntoIterator for WritingMode
source§impl LowerHex for WritingMode
impl LowerHex for WritingMode
source§impl MallocSizeOf for WritingMode
impl MallocSizeOf for WritingMode
source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
source§impl Not for WritingMode
impl Not for WritingMode
source§impl Octal for WritingMode
impl Octal for WritingMode
source§impl PartialEq for WritingMode
impl PartialEq for WritingMode
source§fn eq(&self, other: &WritingMode) -> bool
fn eq(&self, other: &WritingMode) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for WritingMode
impl Serialize for WritingMode
source§impl Sub for WritingMode
impl Sub for WritingMode
source§fn sub(self, other: Self) -> Self
fn sub(self, other: Self) -> Self
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
§type Output = WritingMode
type Output = WritingMode
-
operator.source§impl SubAssign for WritingMode
impl SubAssign for WritingMode
source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
source§impl UpperHex for WritingMode
impl UpperHex for WritingMode
impl Copy for WritingMode
impl Eq for WritingMode
impl StructuralPartialEq for WritingMode
Auto Trait Implementations§
impl Freeze for WritingMode
impl RefUnwindSafe for WritingMode
impl Send for WritingMode
impl Sync for WritingMode
impl Unpin for WritingMode
impl UnwindSafe for WritingMode
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more