pub struct ResolvedServicePartition { /* private fields */ }
Implementations§
Source§impl ResolvedServicePartition
impl ResolvedServicePartition
pub fn get_info(&self) -> ResolvedServicePartitionInfo
pub fn get_endpoint_list(&self) -> ResolvedServiceEndpointList
pub fn compare_version(&self, other: &ResolvedServicePartition) -> Result<i32>
Trait Implementations§
Source§impl Clone for ResolvedServicePartition
impl Clone for ResolvedServicePartition
Source§fn clone(&self) -> ResolvedServicePartition
fn clone(&self) -> ResolvedServicePartition
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 ResolvedServicePartition
impl Debug for ResolvedServicePartition
Source§impl From<IFabricResolvedServicePartitionResult> for ResolvedServicePartition
impl From<IFabricResolvedServicePartitionResult> for ResolvedServicePartition
Source§fn from(com: IFabricResolvedServicePartitionResult) -> Self
fn from(com: IFabricResolvedServicePartitionResult) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ResolvedServicePartition
impl PartialEq for ResolvedServicePartition
Source§impl PartialOrd for ResolvedServicePartition
impl PartialOrd for ResolvedServicePartition
Source§fn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
Compare the version of the resolved result. a > b means partial_cmp(a,b) == Some(Greater) i.e. a.compare_version(b) > 0. a is newer and up to date.
Auto Trait Implementations§
impl Freeze for ResolvedServicePartition
impl RefUnwindSafe for ResolvedServicePartition
impl Send for ResolvedServicePartition
impl Sync for ResolvedServicePartition
impl Unpin for ResolvedServicePartition
impl UnwindSafe for ResolvedServicePartition
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