pub struct UpdateRef {
pub name: String,
pub is_thread: bool,
pub old_value: Option<ChangeId>,
pub new_value: ChangeId,
pub force: bool,
}Fields§
§name: String§is_thread: bool§old_value: Option<ChangeId>§new_value: ChangeId§force: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for UpdateRef
impl<'de> Deserialize<'de> for UpdateRef
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
Auto Trait Implementations§
impl Freeze for UpdateRef
impl RefUnwindSafe for UpdateRef
impl Send for UpdateRef
impl Sync for UpdateRef
impl Unpin for UpdateRef
impl UnsafeUnpin for UpdateRef
impl UnwindSafe for UpdateRef
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