pub struct OverlayFunc {
pub this: Expression,
pub replacement: Expression,
pub from: Expression,
pub length: Option<Expression>,
}Expand description
OVERLAY function - OVERLAY(string PLACING replacement FROM position [FOR length])
Fields§
§this: Expression§replacement: Expression§from: Expression§length: Option<Expression>Trait Implementations§
Source§impl Clone for OverlayFunc
impl Clone for OverlayFunc
Source§fn clone(&self) -> OverlayFunc
fn clone(&self) -> OverlayFunc
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 OverlayFunc
impl Debug for OverlayFunc
Source§impl<'de> Deserialize<'de> for OverlayFunc
impl<'de> Deserialize<'de> for OverlayFunc
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 OverlayFunc
impl PartialEq for OverlayFunc
Source§impl Serialize for OverlayFunc
impl Serialize for OverlayFunc
impl StructuralPartialEq for OverlayFunc
Auto Trait Implementations§
impl Freeze for OverlayFunc
impl RefUnwindSafe for OverlayFunc
impl Send for OverlayFunc
impl Sync for OverlayFunc
impl Unpin for OverlayFunc
impl UnwindSafe for OverlayFunc
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