[−][src]Struct casper_node::types::Deploy
A deploy; an item containing a smart contract along with the requester's signature(s).
Implementations
impl Deploy
[src]
pub fn new(
timestamp: Timestamp,
ttl: TimeDiff,
gas_price: u64,
dependencies: Vec<DeployHash>,
chain_name: String,
payment: ExecutableDeployItem,
session: ExecutableDeployItem,
secret_key: &SecretKey,
rng: &mut NodeRng
) -> Deploy
[src]
timestamp: Timestamp,
ttl: TimeDiff,
gas_price: u64,
dependencies: Vec<DeployHash>,
chain_name: String,
payment: ExecutableDeployItem,
session: ExecutableDeployItem,
secret_key: &SecretKey,
rng: &mut NodeRng
) -> Deploy
Constructs a new signed Deploy
.
pub fn sign(&mut self, secret_key: &SecretKey, rng: &mut NodeRng)
[src]
Adds a signature of this deploy's hash to its approvals.
pub fn id(&self) -> &DeployHash
[src]
Returns the DeployHash
identifying this Deploy
.
pub fn header(&self) -> &DeployHeader
[src]
Returns a reference to the DeployHeader
of this Deploy
.
pub fn take_header(self) -> DeployHeader
[src]
Returns the DeployHeader
of this Deploy
.
pub fn payment(&self) -> &ExecutableDeployItem
[src]
Returns the ExecutableDeployItem
for payment code.
pub fn session(&self) -> &ExecutableDeployItem
[src]
Returns the ExecutableDeployItem
for session code.
pub fn approvals(&self) -> &[Approval]
[src]
Returns the Approval
s for this deploy.
pub fn deploy_type(&self) -> Result<DeployType, Error>
[src]
Returns the DeployType
.
pub fn is_valid(&mut self) -> bool
[src]
Returns true if and only if:
- the deploy hash is correct (should be the hash of the header), and
- the body hash is correct (should be the hash of the body), and
- all approvals are valid signatures of the deploy hash
Note: this is a relatively expensive operation, requiring re-serialization of the deploy, hashing, and signature checking, so should be called as infrequently as possible.
pub fn is_acceptable(
&mut self,
chain_name: String,
config: DeployConfig
) -> bool
[src]
&mut self,
chain_name: String,
config: DeployConfig
) -> bool
Returns true if and only if:
- the chain_name is correct,
- the configured parameters are complied with,
- the deploy is valid
Note: if everything else checks out, calls the computationally expensive is_valid
method.
Trait Implementations
impl Clone for Deploy
[src]
impl DataSize for Deploy
[src]
pub const IS_DYNAMIC: bool
[src]
pub const STATIC_HEAP_SIZE: usize
[src]
pub fn estimate_heap_size(&self) -> usize
[src]
impl Debug for Deploy
[src]
impl<'de> Deserialize<'de> for Deploy
[src]
pub fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl Display for Deploy
[src]
impl DocExample for Deploy
[src]
pub fn doc_example() -> &'static Self
[src]
impl Eq for Deploy
[src]
impl FromBytes for Deploy
[src]
pub fn from_bytes(bytes: &[u8]) -> Result<(Self, &[u8]), Error>
[src]
pub fn from_vec(
bytes: Vec<u8, Global>
) -> Result<(Self, Vec<u8, Global>), Error>
[src]
bytes: Vec<u8, Global>
) -> Result<(Self, Vec<u8, Global>), Error>
impl Hash for Deploy
[src]
pub fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl Item for Deploy
[src]
type Id = DeployHash
The type of ID of the item.
pub const TAG: Tag
[src]
pub const ID_IS_COMPLETE_ITEM: bool
[src]
pub fn id(&self) -> Self::Id
[src]
impl JsonSchema for Deploy
[src]
pub fn schema_name() -> String
[src]
pub fn json_schema(gen: &mut SchemaGenerator) -> Schema
[src]
pub fn is_referenceable() -> bool
[src]
impl Ord for Deploy
[src]
pub fn cmp(&self, other: &Deploy) -> Ordering
[src]
#[must_use]pub fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]
impl PartialEq<Deploy> for Deploy
[src]
impl PartialOrd<Deploy> for Deploy
[src]
pub fn partial_cmp(&self, other: &Deploy) -> Option<Ordering>
[src]
pub fn lt(&self, other: &Deploy) -> bool
[src]
pub fn le(&self, other: &Deploy) -> bool
[src]
pub fn gt(&self, other: &Deploy) -> bool
[src]
pub fn ge(&self, other: &Deploy) -> bool
[src]
impl Serialize for Deploy
[src]
pub fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl StructuralEq for Deploy
[src]
impl StructuralPartialEq for Deploy
[src]
impl ToBytes for Deploy
[src]
Auto Trait Implementations
impl RefUnwindSafe for Deploy
[src]
impl Send for Deploy
[src]
impl Sync for Deploy
[src]
impl Unpin for Deploy
[src]
impl UnwindSafe for Deploy
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> CallHasher for T where
T: Hash,
T: Hash,
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> DynClone for T where
T: Clone,
[src]
T: Clone,
pub fn __clone_box(&self, Private) -> *mut ()
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
pub fn equivalent(&self, key: &K) -> bool
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> Serialize for T where
T: Serialize + ?Sized,
[src]
T: Serialize + ?Sized,
pub fn erased_serialize(
&self,
serializer: &mut dyn Serializer
) -> Result<Ok, Error>
[src]
&self,
serializer: &mut dyn Serializer
) -> Result<Ok, Error>
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,
pub fn vzip(self) -> V
impl<T> WithSubscriber for T
[src]
pub fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
[src]
S: Into<Dispatch>,