struct RawPos(i32, i64, i64, i64);Expand description
Raw getpos() tuple: (bufnum, lnum, col, off).
Tuple Fields§
§0: i32§1: i64§2: i64§3: i64Trait Implementations§
Source§impl<'de> Deserialize<'de> for RawPos
impl<'de> Deserialize<'de> for RawPos
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<RawPos> for Pos
Convert internal RawPos to Pos by switching to 0-based indexing from Lua 1-based.
impl From<RawPos> for Pos
Convert internal RawPos to Pos by switching to 0-based indexing from Lua 1-based.
impl Copy for RawPos
Auto Trait Implementations§
impl Freeze for RawPos
impl RefUnwindSafe for RawPos
impl Send for RawPos
impl Sync for RawPos
impl Unpin for RawPos
impl UnsafeUnpin for RawPos
impl UnwindSafe for RawPos
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§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.