pub struct DecodeFunc {
pub this: Expression,
pub search_results: Vec<(Expression, Expression)>,
pub default: Option<Expression>,
}Expand description
DECODE function (Oracle style)
Fields§
§this: Expression§search_results: Vec<(Expression, Expression)>§default: Option<Expression>Trait Implementations§
Source§impl Clone for DecodeFunc
impl Clone for DecodeFunc
Source§fn clone(&self) -> DecodeFunc
fn clone(&self) -> DecodeFunc
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 DecodeFunc
impl Debug for DecodeFunc
Source§impl<'de> Deserialize<'de> for DecodeFunc
impl<'de> Deserialize<'de> for DecodeFunc
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
Source§impl PartialEq for DecodeFunc
impl PartialEq for DecodeFunc
Source§impl Serialize for DecodeFunc
impl Serialize for DecodeFunc
impl StructuralPartialEq for DecodeFunc
Auto Trait Implementations§
impl Freeze for DecodeFunc
impl RefUnwindSafe for DecodeFunc
impl Send for DecodeFunc
impl Sync for DecodeFunc
impl Unpin for DecodeFunc
impl UnwindSafe for DecodeFunc
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