pub struct ToolSettingHistoryNode {
pub node_id: String,
pub game_id: String,
pub tool_id: String,
pub enabled: bool,
pub settings_json: String,
pub reason: String,
pub created_at: String,
pub is_current: bool,
}Expand description
One versioned tool settings node in the per-tool DAG.
Fields§
§node_id: String§game_id: String§tool_id: String§enabled: bool§settings_json: String§reason: String§created_at: String§is_current: boolTrait Implementations§
Source§impl Clone for ToolSettingHistoryNode
impl Clone for ToolSettingHistoryNode
Source§fn clone(&self) -> ToolSettingHistoryNode
fn clone(&self) -> ToolSettingHistoryNode
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 ToolSettingHistoryNode
impl Debug for ToolSettingHistoryNode
Source§impl PartialEq for ToolSettingHistoryNode
impl PartialEq for ToolSettingHistoryNode
Source§fn eq(&self, other: &ToolSettingHistoryNode) -> bool
fn eq(&self, other: &ToolSettingHistoryNode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ToolSettingHistoryNode
impl StructuralPartialEq for ToolSettingHistoryNode
Auto Trait Implementations§
impl Freeze for ToolSettingHistoryNode
impl RefUnwindSafe for ToolSettingHistoryNode
impl Send for ToolSettingHistoryNode
impl Sync for ToolSettingHistoryNode
impl Unpin for ToolSettingHistoryNode
impl UnsafeUnpin for ToolSettingHistoryNode
impl UnwindSafe for ToolSettingHistoryNode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.