pub struct AlertInstanceLocation {
pub end_column: Option<i32>,
pub end_line: Option<i32>,
pub path: Option<String>,
pub start_column: Option<i32>,
pub start_line: Option<i32>,
}
Fields§
§end_column: Option<i32>
§end_line: Option<i32>
§path: Option<String>
§start_column: Option<i32>
§start_line: Option<i32>
Implementations§
Source§impl AlertInstanceLocation
impl AlertInstanceLocation
pub fn new() -> AlertInstanceLocation
Trait Implementations§
Source§impl Clone for AlertInstanceLocation
impl Clone for AlertInstanceLocation
Source§fn clone(&self) -> AlertInstanceLocation
fn clone(&self) -> AlertInstanceLocation
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 AlertInstanceLocation
impl Debug for AlertInstanceLocation
Source§impl Default for AlertInstanceLocation
impl Default for AlertInstanceLocation
Source§fn default() -> AlertInstanceLocation
fn default() -> AlertInstanceLocation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AlertInstanceLocation
impl<'de> Deserialize<'de> for AlertInstanceLocation
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 PartialEq for AlertInstanceLocation
impl PartialEq for AlertInstanceLocation
Source§impl Serialize for AlertInstanceLocation
impl Serialize for AlertInstanceLocation
impl StructuralPartialEq for AlertInstanceLocation
Auto Trait Implementations§
impl Freeze for AlertInstanceLocation
impl RefUnwindSafe for AlertInstanceLocation
impl Send for AlertInstanceLocation
impl Sync for AlertInstanceLocation
impl Unpin for AlertInstanceLocation
impl UnwindSafe for AlertInstanceLocation
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