SessionStrParams

Struct SessionStrParams 

Source
pub struct SessionStrParams<'a> { /* private fields */ }
Expand description

Container for session-related arguments used while constructing a Deploy.

§session_args_simple

For methods taking session_args_simple, this parameter is the session contract arguments, in the form <NAME:TYPE='VALUE'> or <NAME:TYPE=null>.

There are further details in the docs for the equivalent payment_args_simple.

§session_args_json

For methods taking session_args_json, this parameter is the session contract arguments, as a JSON-encoded Array of JSON Objects of the form:

[{"name":<String>,"type":<VALUE>,"value":<VALUE>}]

There are further details in the docs for the equivalent payment_args_json.


Note while multiple session args can be specified for a single session code instance, only one of session_args_simple, or session_args_json may be used.

Implementations§

Source§

impl<'a> SessionStrParams<'a>

Source

pub fn with_path( session_path: &'a str, session_args_simple: Vec<&'a str>, session_args_json: &'a str, ) -> Self

Constructs a SessionStrParams using a session smart contract file.

Source

pub fn with_bytes( session_bytes: Bytes, session_args_simple: Vec<&'a str>, session_args_json: &'a str, ) -> Self

Constructs a SessionStrParams using session bytes.

Source

pub fn with_name( session_name: &'a str, session_entry_point: &'a str, session_args_simple: Vec<&'a str>, session_args_json: &'a str, ) -> Self

Constructs a SessionStrParams using a stored contract’s name.

  • session_name is the name of the stored contract (associated with the executing account) to be called as the session.
  • session_entry_point is the name of the method that will be used when calling the session contract.
  • See the struct docs for a description of session_args_simple, session_args_json
Source

pub fn with_hash( session_hash: &'a str, session_entry_point: &'a str, session_args_simple: Vec<&'a str>, session_args_json: &'a str, ) -> Self

Constructs a SessionStrParams using a stored contract’s hex-encoded hash.

  • session_hash is the hex-encoded hash of the stored contract to be called as the session.
  • session_entry_point is the name of the method that will be used when calling the session contract.
  • See the struct docs for a description of session_args_simple, session_args_json
Source

pub fn with_package_name( session_package_name: &'a str, session_version: &'a str, session_entry_point: &'a str, session_args_simple: Vec<&'a str>, session_args_json: &'a str, ) -> Self

Constructs a SessionStrParams using a stored contract’s package name.

  • session_package_name is the name of the stored package to be called as the session.
  • session_version is the version of the called session contract. The latest will be used if session_version is empty.
  • session_entry_point is the name of the method that will be used when calling the session contract.
  • See the struct docs for a description of session_args_simple, session_args_json
Source

pub fn with_package_hash( session_package_hash: &'a str, session_version: &'a str, session_entry_point: &'a str, session_args_simple: Vec<&'a str>, session_args_json: &'a str, ) -> Self

Constructs a SessionStrParams using a stored contract’s package hash.

  • session_package_hash is the hex-encoded hash of the stored package to be called as the session.
  • session_version is the version of the called session contract. The latest will be used if session_version is empty.
  • session_entry_point is the name of the method that will be used when calling the session contract.
  • See the struct docs for a description of session_args_simple, session_args_json
Source

pub fn with_transfer( session_args_simple: Vec<&'a str>, session_args_json: &'a str, ) -> Self

Constructs a SessionStrParams representing a Transfer type of Deploy.

Trait Implementations§

Source§

impl<'a> Debug for SessionStrParams<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> Default for SessionStrParams<'a>

Source§

fn default() -> SessionStrParams<'a>

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for SessionStrParams<'a>

§

impl<'a> RefUnwindSafe for SessionStrParams<'a>

§

impl<'a> Send for SessionStrParams<'a>

§

impl<'a> Sync for SessionStrParams<'a>

§

impl<'a> Unpin for SessionStrParams<'a>

§

impl<'a> UnwindSafe for SessionStrParams<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,