pub struct RawRequirement {Show 18 fields
pub id: Option<Uuid>,
pub spec_id: Option<String>,
pub title: String,
pub description: String,
pub req_type: Option<String>,
pub status: Option<String>,
pub priority: Option<String>,
pub owner: String,
pub feature: String,
pub tags: HashSet<String>,
pub created_at: Option<DateTime<Utc>>,
pub modified_at: Option<DateTime<Utc>>,
pub relationships: Vec<RawRelationship>,
pub comments: Vec<Value>,
pub history: Vec<Value>,
pub urls: Vec<Value>,
pub custom_fields: HashMap<String, Value>,
pub ai_evaluation: Option<Value>,
}Expand description
Raw representation of a requirement during import (before validation) Uses String for enum fields to allow detection of unknown values
Fields§
§id: Option<Uuid>§spec_id: Option<String>§title: String§description: String§req_type: Option<String>§status: Option<String>§priority: Option<String>§owner: String§feature: String§created_at: Option<DateTime<Utc>>§modified_at: Option<DateTime<Utc>>§relationships: Vec<RawRelationship>§comments: Vec<Value>§history: Vec<Value>§urls: Vec<Value>§custom_fields: HashMap<String, Value>§ai_evaluation: Option<Value>Trait Implementations§
Source§impl Clone for RawRequirement
impl Clone for RawRequirement
Source§fn clone(&self) -> RawRequirement
fn clone(&self) -> RawRequirement
Returns a duplicate 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 RawRequirement
impl Debug for RawRequirement
Source§impl<'de> Deserialize<'de> for RawRequirement
impl<'de> Deserialize<'de> for RawRequirement
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 RawRequirement
impl RefUnwindSafe for RawRequirement
impl Send for RawRequirement
impl Sync for RawRequirement
impl Unpin for RawRequirement
impl UnsafeUnpin for RawRequirement
impl UnwindSafe for RawRequirement
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