pub struct CreateJobStatement {
pub token: Token,
pub name: ObjectName,
pub schedule: JobScheduleSyntax,
pub principal: ObjectName,
pub procedure: ObjectName,
pub arguments: Vec<CallArgumentSyntax>,
pub enabled: bool,
pub span: SourceRange,
}Fields§
§token: Token§name: ObjectName§schedule: JobScheduleSyntax§principal: ObjectName§procedure: ObjectName§arguments: Vec<CallArgumentSyntax>§enabled: bool§span: SourceRangeTrait Implementations§
Source§impl Clone for CreateJobStatement
impl Clone for CreateJobStatement
Source§fn clone(&self) -> CreateJobStatement
fn clone(&self) -> CreateJobStatement
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 CreateJobStatement
impl Debug for CreateJobStatement
Source§impl Display for CreateJobStatement
impl Display for CreateJobStatement
Source§impl PartialEq for CreateJobStatement
impl PartialEq for CreateJobStatement
impl StructuralPartialEq for CreateJobStatement
Auto Trait Implementations§
impl Freeze for CreateJobStatement
impl RefUnwindSafe for CreateJobStatement
impl Send for CreateJobStatement
impl Sync for CreateJobStatement
impl Unpin for CreateJobStatement
impl UnsafeUnpin for CreateJobStatement
impl UnwindSafe for CreateJobStatement
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