#[repr(C)]pub struct pm_line_column_t {
pub line: i32,
pub column: u32,
}Expand description
A line and column in a string.
Fields§
§line: i32The line number.
column: u32The column in bytes.
Trait Implementations§
Source§impl Clone for pm_line_column_t
impl Clone for pm_line_column_t
Source§fn clone(&self) -> pm_line_column_t
fn clone(&self) -> pm_line_column_t
Returns a duplicate 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 pm_line_column_t
impl Debug for pm_line_column_t
Source§impl Default for pm_line_column_t
impl Default for pm_line_column_t
Source§fn default() -> pm_line_column_t
fn default() -> pm_line_column_t
Returns the “default value” for a type. Read more
impl Copy for pm_line_column_t
Auto Trait Implementations§
impl Freeze for pm_line_column_t
impl RefUnwindSafe for pm_line_column_t
impl Send for pm_line_column_t
impl Sync for pm_line_column_t
impl Unpin for pm_line_column_t
impl UnwindSafe for pm_line_column_t
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