pub struct BindingDto {
pub variable_term_id: String,
pub variable_name: Option<String>,
pub bound_to_term_id: String,
pub bound_to_display: String,
}Expand description
A binding within a substitution, mapping a variable to its bound value.
Fields§
§variable_term_id: String§variable_name: Option<String>§bound_to_term_id: String§bound_to_display: StringTrait Implementations§
Source§impl Clone for BindingDto
impl Clone for BindingDto
Source§fn clone(&self) -> BindingDto
fn clone(&self) -> BindingDto
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 BindingDto
impl Debug for BindingDto
Source§impl<'de> Deserialize<'de> for BindingDto
impl<'de> Deserialize<'de> for BindingDto
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 BindingDto
impl RefUnwindSafe for BindingDto
impl Send for BindingDto
impl Sync for BindingDto
impl Unpin for BindingDto
impl UnsafeUnpin for BindingDto
impl UnwindSafe for BindingDto
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