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§
Source§impl Debug for WinTextHeightInfos
impl Debug for WinTextHeightInfos
Source§impl<'de> Deserialize<'de> for WinTextHeightInfos
impl<'de> Deserialize<'de> for WinTextHeightInfos
Source§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
Source§impl TryFrom<Dictionary> for WinTextHeightInfos
impl TryFrom<Dictionary> for WinTextHeightInfos
Source§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 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 moreSource§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
Source§type Error = Infallible
type Error = Infallible
The error type in the returned
Result.Source§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.