pub struct DmnDecisionServiceDividerLine {
pub id: Option<String>,
pub way_points: Vec<DcPoint>,
pub shared_style: Option<String>,
pub local_style: Option<DmnStyle>,
}Expand description
Struct defines line inside DecisionService.
Fields§
§id: Option<String>§way_points: Vec<DcPoint>A list of points relative to the origin of its parent DmnDiagram that specifies the connected line segments of the edge. At least two (2) waypoint`s MUST be specified. Waypoint must be on the border of the DmnShape.
local_style: Option<DmnStyle>A DmnStyle that defines the styling for this element.
Trait Implementations§
source§impl Clone for DmnDecisionServiceDividerLine
impl Clone for DmnDecisionServiceDividerLine
source§fn clone(&self) -> DmnDecisionServiceDividerLine
fn clone(&self) -> DmnDecisionServiceDividerLine
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 moreAuto Trait Implementations§
impl RefUnwindSafe for DmnDecisionServiceDividerLine
impl Send for DmnDecisionServiceDividerLine
impl Sync for DmnDecisionServiceDividerLine
impl Unpin for DmnDecisionServiceDividerLine
impl UnwindSafe for DmnDecisionServiceDividerLine
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