pub struct PolicyVersion {
pub creator: Option<String>,
pub created_at: DateTime<Local>,
pub version: Option<i64>,
pub version_description: String,
pub reasoner_connector_context: String,
}
Fields§
§creator: Option<String>
§created_at: DateTime<Local>
§version: Option<i64>
§version_description: String
§reasoner_connector_context: String
reasoner_connector_context contains the hash of the reasoner connector’s base definitions
Trait Implementations§
Source§impl Clone for PolicyVersion
impl Clone for PolicyVersion
Source§fn clone(&self) -> PolicyVersion
fn clone(&self) -> PolicyVersion
Returns a copy 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 PolicyVersion
impl Debug for PolicyVersion
Source§impl<'de> Deserialize<'de> for PolicyVersion
impl<'de> Deserialize<'de> for PolicyVersion
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 PolicyVersion
impl RefUnwindSafe for PolicyVersion
impl Send for PolicyVersion
impl Sync for PolicyVersion
impl Unpin for PolicyVersion
impl UnwindSafe for PolicyVersion
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