pub struct FlowGraphLayoutRequest { /* private fields */ }Expand description
Represents a queued flow graph layout request, given out by FlowGraph::request_layout.
Implementations§
Source§impl FlowGraphLayoutRequest
impl FlowGraphLayoutRequest
Sourcepub fn is_complete(&self) -> bool
pub fn is_complete(&self) -> bool
Returns true if the layout request has completed.
Sourcepub fn abort(&self)
pub fn abort(&self)
Removes the request from the flow graphs layout queue, and sets FlowGraph::is_layout_complete
Trait Implementations§
Source§impl ToOwned for FlowGraphLayoutRequest
impl ToOwned for FlowGraphLayoutRequest
Source§type Owned = Ref<FlowGraphLayoutRequest>
type Owned = Ref<FlowGraphLayoutRequest>
The resulting type after obtaining ownership.
Source§fn to_owned(&self) -> Self::Owned
fn to_owned(&self) -> Self::Owned
Creates owned data from borrowed data, usually by cloning. Read more
1.63.0 · Source§fn clone_into(&self, target: &mut Self::Owned)
fn clone_into(&self, target: &mut Self::Owned)
Uses borrowed data to replace owned data, usually by cloning. Read more
Auto Trait Implementations§
impl Freeze for FlowGraphLayoutRequest
impl RefUnwindSafe for FlowGraphLayoutRequest
impl !Send for FlowGraphLayoutRequest
impl !Sync for FlowGraphLayoutRequest
impl Unpin for FlowGraphLayoutRequest
impl UnwindSafe for FlowGraphLayoutRequest
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