pub struct BindingRef {
pub project: String,
pub binding_path: String,
pub contract: String,
pub equation: String,
pub status: String,
}Expand description
A binding.yaml reference from a consumer project.
Fields§
§project: String§binding_path: String§contract: String§equation: String§status: StringTrait Implementations§
Source§impl Clone for BindingRef
impl Clone for BindingRef
Source§fn clone(&self) -> BindingRef
fn clone(&self) -> BindingRef
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 moreSource§impl Debug for BindingRef
impl Debug for BindingRef
Source§impl<'de> Deserialize<'de> for BindingRef
impl<'de> Deserialize<'de> for BindingRef
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
Auto Trait Implementations§
impl Freeze for BindingRef
impl RefUnwindSafe for BindingRef
impl Send for BindingRef
impl Sync for BindingRef
impl Unpin for BindingRef
impl UnsafeUnpin for BindingRef
impl UnwindSafe for BindingRef
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