pub struct SqlCompilerMessage { /* private fields */ }
Implementations§
Source§impl SqlCompilerMessage
impl SqlCompilerMessage
pub fn end_column<T>(self, value: T) -> Self
pub fn end_line_number<T>(self, value: T) -> Self
pub fn error_type<T>(self, value: T) -> Self
pub fn message<T>(self, value: T) -> Self
pub fn snippet<T>(self, value: T) -> Self
pub fn start_column<T>(self, value: T) -> Self
pub fn start_line_number<T>(self, value: T) -> Self
pub fn warning<T>(self, value: T) -> Self
Trait Implementations§
Source§impl Clone for SqlCompilerMessage
impl Clone for SqlCompilerMessage
Source§fn clone(&self) -> SqlCompilerMessage
fn clone(&self) -> SqlCompilerMessage
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 SqlCompilerMessage
impl Debug for SqlCompilerMessage
Source§impl Default for SqlCompilerMessage
impl Default for SqlCompilerMessage
Source§impl From<SqlCompilerMessage> for SqlCompilerMessage
impl From<SqlCompilerMessage> for SqlCompilerMessage
Source§fn from(value: SqlCompilerMessage) -> Self
fn from(value: SqlCompilerMessage) -> Self
Converts to this type from the input type.
Source§impl TryFrom<SqlCompilerMessage> for SqlCompilerMessage
impl TryFrom<SqlCompilerMessage> for SqlCompilerMessage
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: SqlCompilerMessage) -> Result<Self, ConversionError>
fn try_from(value: SqlCompilerMessage) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for SqlCompilerMessage
impl RefUnwindSafe for SqlCompilerMessage
impl Send for SqlCompilerMessage
impl Sync for SqlCompilerMessage
impl Unpin for SqlCompilerMessage
impl UnwindSafe for SqlCompilerMessage
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