pub struct Rand {
pub seed: Option<Box<Expression>>,
pub lower: Option<Box<Expression>>,
pub upper: Option<Box<Expression>>,
}Expand description
RAND function (optional seed, or Teradata RANDOM(lower, upper))
Fields§
§seed: Option<Box<Expression>>§lower: Option<Box<Expression>>Teradata RANDOM lower bound
upper: Option<Box<Expression>>Teradata RANDOM upper bound
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Rand
impl<'de> Deserialize<'de> for Rand
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
impl StructuralPartialEq for Rand
Auto Trait Implementations§
impl Freeze for Rand
impl RefUnwindSafe for Rand
impl Send for Rand
impl Sync for Rand
impl Unpin for Rand
impl UnwindSafe for Rand
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