pub struct ViewBoundaryDto {
pub id: String,
pub owns: Vec<String>,
pub forbids: Vec<String>,
pub forbid_rules: Vec<String>,
pub rationale: Option<String>,
pub rule_refs: Vec<ViewRuleRefDto>,
pub evidence: Vec<ViewEvidenceDto>,
pub missing: Vec<String>,
}Fields§
§id: String§owns: Vec<String>§forbids: Vec<String>§forbid_rules: Vec<String>§rationale: Option<String>§rule_refs: Vec<ViewRuleRefDto>§evidence: Vec<ViewEvidenceDto>§missing: Vec<String>Trait Implementations§
Source§impl Clone for ViewBoundaryDto
impl Clone for ViewBoundaryDto
Source§fn clone(&self) -> ViewBoundaryDto
fn clone(&self) -> ViewBoundaryDto
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 ViewBoundaryDto
impl Debug for ViewBoundaryDto
Source§impl<'de> Deserialize<'de> for ViewBoundaryDto
impl<'de> Deserialize<'de> for ViewBoundaryDto
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
impl Eq for ViewBoundaryDto
Source§impl PartialEq for ViewBoundaryDto
impl PartialEq for ViewBoundaryDto
Source§impl Serialize for ViewBoundaryDto
impl Serialize for ViewBoundaryDto
impl StructuralPartialEq for ViewBoundaryDto
Auto Trait Implementations§
impl Freeze for ViewBoundaryDto
impl RefUnwindSafe for ViewBoundaryDto
impl Send for ViewBoundaryDto
impl Sync for ViewBoundaryDto
impl Unpin for ViewBoundaryDto
impl UnsafeUnpin for ViewBoundaryDto
impl UnwindSafe for ViewBoundaryDto
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