pub struct LogEntryUpdate {
pub base: Option<ResourceUpdate>,
pub resolved: Option<Boolean>,
pub cper: Option<CperUpdate>,
pub resolution_steps: Option<Vec<ResolutionStepUpdate>>,
}Expand description
Update struct corresponding to LogEntry
Fields§
§base: Option<ResourceUpdate>§resolved: Option<Boolean>§cper: Option<CperUpdate>§resolution_steps: Option<Vec<ResolutionStepUpdate>>Implementations§
Source§impl LogEntryUpdate
impl LogEntryUpdate
pub fn builder() -> Self
pub const fn build(self) -> Self
pub fn with_base(self, v: ResourceUpdate) -> Self
pub fn with_resolved(self, v: Boolean) -> Self
pub fn with_cper(self, v: CperUpdate) -> Self
pub fn with_resolution_steps(self, v: Vec<ResolutionStepUpdate>) -> Self
Trait Implementations§
Source§impl Debug for LogEntryUpdate
impl Debug for LogEntryUpdate
Source§impl Default for LogEntryUpdate
impl Default for LogEntryUpdate
Source§fn default() -> LogEntryUpdate
fn default() -> LogEntryUpdate
Returns the “default value” for a type. Read more
Source§impl Serialize for LogEntryUpdate
impl Serialize for LogEntryUpdate
Auto Trait Implementations§
impl Freeze for LogEntryUpdate
impl RefUnwindSafe for LogEntryUpdate
impl Send for LogEntryUpdate
impl Sync for LogEntryUpdate
impl Unpin for LogEntryUpdate
impl UnsafeUnpin for LogEntryUpdate
impl UnwindSafe for LogEntryUpdate
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