Struct WinTextHeightInfos
pub struct WinTextHeightInfos {
pub all: u32,
pub fill: u32,
}Expand description
Infos returned by Window::text_height().
Fields§
§all: u32The total number of screen lines occupied by the range.
fill: u32The number of diff filler or virtual lines among them.
Trait Implementations§
§impl Debug for WinTextHeightInfos
impl Debug for WinTextHeightInfos
§impl<'de> Deserialize<'de> for WinTextHeightInfos
impl<'de> Deserialize<'de> for WinTextHeightInfos
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<WinTextHeightInfos, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<WinTextHeightInfos, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl TryFrom<Dictionary> for WinTextHeightInfos
impl TryFrom<Dictionary> for WinTextHeightInfos
§fn try_from(
value: Dictionary,
) -> Result<WinTextHeightInfos, <WinTextHeightInfos as TryFrom<Dictionary>>::Error>
fn try_from( value: Dictionary, ) -> Result<WinTextHeightInfos, <WinTextHeightInfos as TryFrom<Dictionary>>::Error>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for WinTextHeightInfos
impl RefUnwindSafe for WinTextHeightInfos
impl Send for WinTextHeightInfos
impl Sync for WinTextHeightInfos
impl Unpin for WinTextHeightInfos
impl UnsafeUnpin for WinTextHeightInfos
impl UnwindSafe for WinTextHeightInfos
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> 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§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
§type Error = Infallible
type Error = Infallible
The error type in the returned
Result.§fn into_result(self) -> Result<T, <T as IntoResult<T>>::Error>
fn into_result(self) -> Result<T, <T as IntoResult<T>>::Error>
Converts the value into a
Result.