pub enum ForClause {
Browse,
Json {
for_json: ForJson,
root: Option<String>,
include_null_values: bool,
without_array_wrapper: bool,
},
Xml {
for_xml: ForXml,
elements: bool,
binary_base64: bool,
root: Option<String>,
type: bool,
},
}
Expand description
FOR XML or FOR JSON clause, specific to MSSQL (formats the output of a query as XML or JSON)
Variants§
Trait Implementations§
Source§impl Ord for ForClause
impl Ord for ForClause
Source§impl PartialOrd for ForClause
impl PartialOrd for ForClause
impl Eq for ForClause
impl StructuralPartialEq for ForClause
Auto Trait Implementations§
impl Freeze for ForClause
impl RefUnwindSafe for ForClause
impl Send for ForClause
impl Sync for ForClause
impl Unpin for ForClause
impl UnwindSafe for ForClause
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