Struct move_binary_format::compatibility::Compatibility
source · [−]Expand description
The result of a linking and layout compatibility check. Here is what the different combinations
mean:
{ struct: true, struct_layout: true }
: fully backward compatible
{ struct_and_function_linking: true, struct_layout: false }
: Dependent modules that reference functions or types in this module may not link. However, fixing, recompiling, and redeploying all dependent modules will work–no data migration needed.
{ type_and_function_linking: true, struct_layout: false }
: Attempting to read structs published by this module will now fail at runtime. However, dependent modules will continue to link. Requires data migration, but no changes to dependent modules.
{ type_and_function_linking: false, struct_layout: false }
: Everything is broken. Need both a data migration and changes to dependent modules.
Fields
struct_and_function_linking: bool
If false, dependent modules that reference functions or structs in this module may not link
struct_layout: bool
If false, attempting to read structs previously published by this module will fail at runtime
Implementations
sourceimpl Compatibility
impl Compatibility
sourcepub fn is_fully_compatible(&self) -> bool
pub fn is_fully_compatible(&self) -> bool
Return true if the two module s compared in the compatiblity check are both linking and layout compatible.
sourcepub fn check(old_module: &Module, new_module: &Module) -> Compatibility
pub fn check(old_module: &Module, new_module: &Module) -> Compatibility
Return compatibility assessment for new_module
relative to old module old_module
.
Trait Implementations
sourceimpl Clone for Compatibility
impl Clone for Compatibility
sourcefn clone(&self) -> Compatibility
fn clone(&self) -> Compatibility
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for Compatibility
impl Debug for Compatibility
sourceimpl PartialEq<Compatibility> for Compatibility
impl PartialEq<Compatibility> for Compatibility
sourcefn eq(&self, other: &Compatibility) -> bool
fn eq(&self, other: &Compatibility) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &Compatibility) -> bool
fn ne(&self, other: &Compatibility) -> bool
This method tests for !=
.
impl Copy for Compatibility
impl Eq for Compatibility
impl StructuralEq for Compatibility
impl StructuralPartialEq for Compatibility
Auto Trait Implementations
impl RefUnwindSafe for Compatibility
impl Send for Compatibility
impl Sync for Compatibility
impl Unpin for Compatibility
impl UnwindSafe for Compatibility
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more