#[repr(C)]pub struct XmlTextPos {
pub row: u32,
pub col: u32,
}
Fields§
§row: u32
§col: u32
Trait Implementations§
Source§impl Clone for XmlTextPos
impl Clone for XmlTextPos
Source§fn clone(&self) -> XmlTextPos
fn clone(&self) -> XmlTextPos
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 XmlTextPos
impl Debug for XmlTextPos
Source§impl Display for XmlTextPos
impl Display for XmlTextPos
Source§impl Hash for XmlTextPos
impl Hash for XmlTextPos
Source§impl Ord for XmlTextPos
impl Ord for XmlTextPos
Source§fn cmp(&self, other: &XmlTextPos) -> Ordering
fn cmp(&self, other: &XmlTextPos) -> Ordering
1.21.0 · 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
Source§impl PartialEq for XmlTextPos
impl PartialEq for XmlTextPos
Source§impl PartialOrd for XmlTextPos
impl PartialOrd for XmlTextPos
impl Eq for XmlTextPos
impl StructuralPartialEq for XmlTextPos
Auto Trait Implementations§
impl Freeze for XmlTextPos
impl RefUnwindSafe for XmlTextPos
impl Send for XmlTextPos
impl Sync for XmlTextPos
impl Unpin for XmlTextPos
impl UnwindSafe for XmlTextPos
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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