pub struct JackGraphInfo {
pub ports: Vec<JackPortInfo>,
pub connections: Vec<JackConnectionInfo>,
}Fields§
§ports: Vec<JackPortInfo>§connections: Vec<JackConnectionInfo>Trait Implementations§
Source§impl Clone for JackGraphInfo
impl Clone for JackGraphInfo
Source§fn clone(&self) -> JackGraphInfo
fn clone(&self) -> JackGraphInfo
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 JackGraphInfo
impl Debug for JackGraphInfo
Source§impl Default for JackGraphInfo
impl Default for JackGraphInfo
Source§fn default() -> JackGraphInfo
fn default() -> JackGraphInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JackGraphInfo
impl<'de> Deserialize<'de> for JackGraphInfo
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 JackGraphInfo
Source§impl PartialEq for JackGraphInfo
impl PartialEq for JackGraphInfo
Source§impl Serialize for JackGraphInfo
impl Serialize for JackGraphInfo
impl StructuralPartialEq for JackGraphInfo
Auto Trait Implementations§
impl Freeze for JackGraphInfo
impl RefUnwindSafe for JackGraphInfo
impl Send for JackGraphInfo
impl Sync for JackGraphInfo
impl Unpin for JackGraphInfo
impl UnsafeUnpin for JackGraphInfo
impl UnwindSafe for JackGraphInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more