pub struct Sandbox {Show 17 fields
pub id: Option<u64>,
pub guid: String,
pub name: String,
pub description: Option<String>,
pub created: DateTime<Utc>,
pub modified: DateTime<Utc>,
pub auto_recreate: bool,
pub custom_fields: Option<HashMap<String, String>>,
pub owner: Option<String>,
pub owner_username: Option<String>,
pub organization_id: Option<u64>,
pub application_guid: Option<String>,
pub team_identifiers: Option<Vec<String>>,
pub scan_url: Option<String>,
pub last_scan_date: Option<DateTime<Utc>>,
pub status: Option<String>,
pub links: Option<Value>,
}
Expand description
Represents a Veracode development sandbox
Fields§
§id: Option<u64>
§guid: String
§name: String
§description: Option<String>
§created: DateTime<Utc>
§modified: DateTime<Utc>
§auto_recreate: bool
§custom_fields: Option<HashMap<String, String>>
§owner: Option<String>
§owner_username: Option<String>
§organization_id: Option<u64>
§application_guid: Option<String>
§team_identifiers: Option<Vec<String>>
§scan_url: Option<String>
§last_scan_date: Option<DateTime<Utc>>
§status: Option<String>
§links: Option<Value>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Sandbox
impl<'de> Deserialize<'de> for Sandbox
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 Sandbox
impl RefUnwindSafe for Sandbox
impl Send for Sandbox
impl Sync for Sandbox
impl Unpin for Sandbox
impl UnwindSafe for Sandbox
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