pub struct ProviderPointerSpan {
pub row: i64,
pub from: i64,
pub to: i64,
}Expand description
One canonical half-open pointer row run.
Fields§
§row: i64Viewport row containing the run.
from: i64Inclusive starting column.
to: i64Exclusive ending column.
Trait Implementations§
Source§impl Clone for ProviderPointerSpan
impl Clone for ProviderPointerSpan
Source§fn clone(&self) -> ProviderPointerSpan
fn clone(&self) -> ProviderPointerSpan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProviderPointerSpan
impl Debug for ProviderPointerSpan
Source§impl<'de> Deserialize<'de> for ProviderPointerSpan
impl<'de> Deserialize<'de> for ProviderPointerSpan
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
impl Eq for ProviderPointerSpan
Source§impl PartialEq for ProviderPointerSpan
impl PartialEq for ProviderPointerSpan
Source§impl Serialize for ProviderPointerSpan
impl Serialize for ProviderPointerSpan
impl StructuralPartialEq for ProviderPointerSpan
Auto Trait Implementations§
impl Freeze for ProviderPointerSpan
impl RefUnwindSafe for ProviderPointerSpan
impl Send for ProviderPointerSpan
impl Sync for ProviderPointerSpan
impl Unpin for ProviderPointerSpan
impl UnsafeUnpin for ProviderPointerSpan
impl UnwindSafe for ProviderPointerSpan
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