pub struct ReleaseApprovalHistory {
pub approver: Option<IdentityRef>,
pub changed_by: Option<IdentityRef>,
pub comments: Option<String>,
pub created_on: Option<OffsetDateTime>,
pub modified_on: Option<OffsetDateTime>,
pub revision: Option<i32>,
}Fields§
§approver: Option<IdentityRef>§changed_by: Option<IdentityRef>§comments: Option<String>Approval history comments.
created_on: Option<OffsetDateTime>Time when this approval created.
modified_on: Option<OffsetDateTime>Time when this approval modified.
revision: Option<i32>Approval history revision.
Implementations§
Trait Implementations§
Source§impl Clone for ReleaseApprovalHistory
impl Clone for ReleaseApprovalHistory
Source§fn clone(&self) -> ReleaseApprovalHistory
fn clone(&self) -> ReleaseApprovalHistory
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 ReleaseApprovalHistory
impl Debug for ReleaseApprovalHistory
Source§impl Default for ReleaseApprovalHistory
impl Default for ReleaseApprovalHistory
Source§fn default() -> ReleaseApprovalHistory
fn default() -> ReleaseApprovalHistory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReleaseApprovalHistory
impl<'de> Deserialize<'de> for ReleaseApprovalHistory
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 ReleaseApprovalHistory
impl PartialEq for ReleaseApprovalHistory
Source§impl Serialize for ReleaseApprovalHistory
impl Serialize for ReleaseApprovalHistory
impl StructuralPartialEq for ReleaseApprovalHistory
Auto Trait Implementations§
impl Freeze for ReleaseApprovalHistory
impl RefUnwindSafe for ReleaseApprovalHistory
impl Send for ReleaseApprovalHistory
impl Sync for ReleaseApprovalHistory
impl Unpin for ReleaseApprovalHistory
impl UnwindSafe for ReleaseApprovalHistory
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