pub struct ConnectionFeedback {
pub is_valid: bool,
pub can_connect: bool,
pub message: Option<String>,
}Expand description
Feedback for connection validation during edge creation
Fields§
§is_valid: bool§can_connect: bool§message: Option<String>Trait Implementations§
Source§impl Clone for ConnectionFeedback
impl Clone for ConnectionFeedback
Source§fn clone(&self) -> ConnectionFeedback
fn clone(&self) -> ConnectionFeedback
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 moreAuto Trait Implementations§
impl Freeze for ConnectionFeedback
impl RefUnwindSafe for ConnectionFeedback
impl Send for ConnectionFeedback
impl Sync for ConnectionFeedback
impl Unpin for ConnectionFeedback
impl UnwindSafe for ConnectionFeedback
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