Enum chain_builder::JoinStatement
source · pub enum JoinStatement {
On(String, String, String),
OrChain(Box<JoinBuilder>),
OnVal(String, String, Value),
}Variants§
Implementations§
source§impl JoinStatement
impl JoinStatement
pub fn to_join_builder(&mut self) -> &mut JoinBuilder
Trait Implementations§
source§impl Clone for JoinStatement
impl Clone for JoinStatement
source§fn clone(&self) -> JoinStatement
fn clone(&self) -> JoinStatement
Returns a copy 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 JoinStatement
impl Debug for JoinStatement
source§impl<'de> Deserialize<'de> for JoinStatement
impl<'de> Deserialize<'de> for JoinStatement
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 RefUnwindSafe for JoinStatement
impl Send for JoinStatement
impl Sync for JoinStatement
impl Unpin for JoinStatement
impl UnwindSafe for JoinStatement
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