pub struct ImportDelegateBindingsResult {
pub created: Vec<String>,
pub updated: Vec<String>,
}Expand description
ImportDelegateBindingsResult : The outcome of a whole-file import: every binding path that was newly created vs. an existing one that was updated in place.
Fields§
§created: Vec<String>§updated: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for ImportDelegateBindingsResult
impl Clone for ImportDelegateBindingsResult
Source§fn clone(&self) -> ImportDelegateBindingsResult
fn clone(&self) -> ImportDelegateBindingsResult
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 ImportDelegateBindingsResult
impl Debug for ImportDelegateBindingsResult
Source§impl Default for ImportDelegateBindingsResult
impl Default for ImportDelegateBindingsResult
Source§fn default() -> ImportDelegateBindingsResult
fn default() -> ImportDelegateBindingsResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ImportDelegateBindingsResult
impl<'de> Deserialize<'de> for ImportDelegateBindingsResult
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 StructuralPartialEq for ImportDelegateBindingsResult
Auto Trait Implementations§
impl Freeze for ImportDelegateBindingsResult
impl RefUnwindSafe for ImportDelegateBindingsResult
impl Send for ImportDelegateBindingsResult
impl Sync for ImportDelegateBindingsResult
impl Unpin for ImportDelegateBindingsResult
impl UnsafeUnpin for ImportDelegateBindingsResult
impl UnwindSafe for ImportDelegateBindingsResult
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