pub struct InformationNode {
pub fields: Option<Value>,
pub last_modified_by: Option<String>,
pub last_modified_date: Option<OffsetDateTime>,
pub node_id: Option<i32>,
pub parent_id: Option<i32>,
pub type_: Option<String>,
}Expand description
Data representation of an information node associated with a build
Fields§
§fields: Option<Value>Fields of the information node
last_modified_by: Option<String>Process or person that last modified this node
last_modified_date: Option<OffsetDateTime>Date this node was last modified
node_id: Option<i32>Node Id of this information node
parent_id: Option<i32>Id of parent node (xml tree)
type_: Option<String>The type of the information node
Implementations§
Trait Implementations§
Source§impl Clone for InformationNode
impl Clone for InformationNode
Source§fn clone(&self) -> InformationNode
fn clone(&self) -> InformationNode
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 InformationNode
impl Debug for InformationNode
Source§impl Default for InformationNode
impl Default for InformationNode
Source§fn default() -> InformationNode
fn default() -> InformationNode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InformationNode
impl<'de> Deserialize<'de> for InformationNode
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 InformationNode
impl PartialEq for InformationNode
Source§impl Serialize for InformationNode
impl Serialize for InformationNode
impl StructuralPartialEq for InformationNode
Auto Trait Implementations§
impl Freeze for InformationNode
impl RefUnwindSafe for InformationNode
impl Send for InformationNode
impl Sync for InformationNode
impl Unpin for InformationNode
impl UnwindSafe for InformationNode
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