pub struct RawDynamicProperty {
pub property_name: String,
pub raw_sql_segment: String,
}Fields§
§property_name: String§raw_sql_segment: StringImplementations§
Source§impl RawDynamicProperty
impl RawDynamicProperty
pub fn new( property_name: impl Into<String>, raw_sql_segment: UnsafeRawSqlSegment, ) -> Self
Trait Implementations§
Source§impl Clone for RawDynamicProperty
impl Clone for RawDynamicProperty
Source§fn clone(&self) -> RawDynamicProperty
fn clone(&self) -> RawDynamicProperty
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RawDynamicProperty
impl Debug for RawDynamicProperty
impl Eq for RawDynamicProperty
Source§impl PartialEq for RawDynamicProperty
impl PartialEq for RawDynamicProperty
Source§fn eq(&self, other: &RawDynamicProperty) -> bool
fn eq(&self, other: &RawDynamicProperty) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RawDynamicProperty
Auto Trait Implementations§
impl Freeze for RawDynamicProperty
impl RefUnwindSafe for RawDynamicProperty
impl Send for RawDynamicProperty
impl Sync for RawDynamicProperty
impl Unpin for RawDynamicProperty
impl UnsafeUnpin for RawDynamicProperty
impl UnwindSafe for RawDynamicProperty
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