pub struct TargetBindingConfig {
pub target_type: TargetBindingType,
pub target_path: Option<String>,
}Expand description
TargetBindingConfig - Where to write the result
Fields§
§target_type: TargetBindingTypeTarget type (where to write the result)
target_path: Option<String>Custom target path (for custom target type)
Trait Implementations§
Source§impl Clone for TargetBindingConfig
impl Clone for TargetBindingConfig
Source§fn clone(&self) -> TargetBindingConfig
fn clone(&self) -> TargetBindingConfig
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 TargetBindingConfig
impl Debug for TargetBindingConfig
Source§impl<'de> Deserialize<'de> for TargetBindingConfig
impl<'de> Deserialize<'de> for TargetBindingConfig
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 TargetBindingConfig
impl RefUnwindSafe for TargetBindingConfig
impl Send for TargetBindingConfig
impl Sync for TargetBindingConfig
impl Unpin for TargetBindingConfig
impl UnsafeUnpin for TargetBindingConfig
impl UnwindSafe for TargetBindingConfig
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