pub struct ConsoleLocation {
pub url: String,
pub line_number: u32,
pub column_number: u32,
}Fields§
§url: String§line_number: u32§column_number: u32Trait Implementations§
Source§impl Clone for ConsoleLocation
impl Clone for ConsoleLocation
Source§fn clone(&self) -> ConsoleLocation
fn clone(&self) -> ConsoleLocation
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 ConsoleLocation
impl Debug for ConsoleLocation
Source§impl<'de> Deserialize<'de> for ConsoleLocation
impl<'de> Deserialize<'de> for ConsoleLocation
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
Auto Trait Implementations§
impl Freeze for ConsoleLocation
impl RefUnwindSafe for ConsoleLocation
impl Send for ConsoleLocation
impl Sync for ConsoleLocation
impl Unpin for ConsoleLocation
impl UnsafeUnpin for ConsoleLocation
impl UnwindSafe for ConsoleLocation
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