pub struct PatchApplicationIn {
pub id: Option<String>,
pub note: Option<String>,
pub reason: Option<String>,
pub stage: Option<String>,
}Fields§
§id: Option<String>ID is the application to move, from the path.
note: Option<String>Note is a free-text comment recorded on the timeline, with or without a stage change.
reason: Option<String>Reason records WHY, and is required to reject.
stage: Option<String>Stage is the stage to move to: applied, screened, qualified, credits-offered, onboarded or rejected. Omit to leave the stage alone.
Implementations§
Source§impl PatchApplicationIn
impl PatchApplicationIn
pub fn new() -> PatchApplicationIn
Trait Implementations§
Source§impl Clone for PatchApplicationIn
impl Clone for PatchApplicationIn
Source§fn clone(&self) -> PatchApplicationIn
fn clone(&self) -> PatchApplicationIn
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 PatchApplicationIn
impl Debug for PatchApplicationIn
Source§impl Default for PatchApplicationIn
impl Default for PatchApplicationIn
Source§fn default() -> PatchApplicationIn
fn default() -> PatchApplicationIn
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchApplicationIn
impl<'de> Deserialize<'de> for PatchApplicationIn
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 PatchApplicationIn
impl PartialEq for PatchApplicationIn
Source§impl Serialize for PatchApplicationIn
impl Serialize for PatchApplicationIn
impl StructuralPartialEq for PatchApplicationIn
Auto Trait Implementations§
impl Freeze for PatchApplicationIn
impl RefUnwindSafe for PatchApplicationIn
impl Send for PatchApplicationIn
impl Sync for PatchApplicationIn
impl Unpin for PatchApplicationIn
impl UnsafeUnpin for PatchApplicationIn
impl UnwindSafe for PatchApplicationIn
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