pub struct YError {
pub code: String,
pub msg: String,
pub module: String,
pub file: String,
pub line: u32,
pub trace: Vec<String>,
}
Fields§
§code: String
§msg: String
§module: String
§file: String
§line: u32
§trace: Vec<String>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for YError
impl RefUnwindSafe for YError
impl Send for YError
impl Sync for YError
impl Unpin for YError
impl UnwindSafe for YError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoSql for T
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expression
fn into_sql<T>(self) -> Self::Expression
Convert
self
to an expression for Diesel’s query builder. Read moreSource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
Convert
&self
to an expression for Diesel’s query builder. Read more