pub struct ConsensusManager {
pub handle: ObjectStubHandle,
}
Fields§
§handle: ObjectStubHandle
Implementations§
Source§impl ConsensusManager
impl ConsensusManager
pub fn get_current_epoch(&self) -> Epoch
pub fn start(&mut self)
pub fn get_current_time(&self, precision: TimePrecision) -> Instant
pub fn compare_current_time( &self, instant: Instant, precision: TimePrecision, operator: TimeComparisonOperator, ) -> bool
pub fn next_round( &mut self, round: Round, proposer_timestamp_ms: i64, leader_proposal_history: LeaderProposalHistory, )
pub fn create_validator( &mut self, key: Secp256k1PublicKey, fee_factor: Decimal, xrd_payment: FungibleBucket, ) -> (Global<Validator>, NonFungibleBucket, FungibleBucket)
Trait Implementations§
Source§impl Clone for ConsensusManager
impl Clone for ConsensusManager
Source§fn clone(&self) -> ConsensusManager
fn clone(&self) -> ConsensusManager
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 ConsensusManager
impl Debug for ConsensusManager
Source§impl HasStub for ConsensusManager
impl HasStub for ConsensusManager
type Stub = ConsensusManager
Source§impl HasTypeInfo for ConsensusManager
impl HasTypeInfo for ConsensusManager
const PACKAGE_ADDRESS: Option<PackageAddress>
const BLUEPRINT_NAME: &'static str = "ConsensusManager"
const OWNED_TYPE_NAME: &'static str = "OwnedConsensusManager"
const GLOBAL_TYPE_NAME: &'static str = "GlobalConsensusManager"
fn blueprint_id() -> BlueprintId
Source§impl ObjectStub for ConsensusManager
impl ObjectStub for ConsensusManager
type AddressType = ComponentAddress
fn new(handle: ObjectStubHandle) -> Self
fn handle(&self) -> &ObjectStubHandle
fn call<A: ScryptoEncode, T: ScryptoDecode>(&self, method: &str, args: &A) -> T
fn call_ignore_rtn<A: ScryptoEncode>(&self, method: &str, args: &A)
fn call_raw<T: ScryptoDecode>(&self, method: &str, args: Vec<u8>) -> T
fn instance_of(&self, blueprint_id: &BlueprintId) -> bool
fn blueprint_id(&self) -> BlueprintId
Source§impl PartialEq for ConsensusManager
impl PartialEq for ConsensusManager
impl Copy for ConsensusManager
impl Eq for ConsensusManager
impl StructuralPartialEq for ConsensusManager
Auto Trait Implementations§
impl Freeze for ConsensusManager
impl RefUnwindSafe for ConsensusManager
impl Send for ConsensusManager
impl Sync for ConsensusManager
impl Unpin for ConsensusManager
impl UnwindSafe for ConsensusManager
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, U> ContextualTryInto<U> for Twhere
U: ContextualTryFrom<T>,
impl<T, U> ContextualTryInto<U> for Twhere
U: ContextualTryFrom<T>,
type Error = <U as ContextualTryFrom<T>>::Error
type Context = <U as ContextualTryFrom<T>>::Context
fn contextual_try_into( self, context: &<U as ContextualTryFrom<T>>::Context, ) -> Result<U, <U as ContextualTryFrom<T>>::Error>
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.