[][src]Struct ink_metadata::InkProject

pub struct InkProject { /* fields omitted */ }

An entire ink! project for metadata file generation purposes.

Implementations

impl InkProject[src]

pub fn new<L, S>(layout: L, spec: S) -> Self where
    L: Into<Layout>,
    S: Into<ContractSpec>, 
[src]

impl InkProject[src]

pub fn registry(&self) -> &RegistryReadOnly[src]

Returns a read-only registry of types in the contract.

pub fn layout(&self) -> &Layout<CompactForm>[src]

Returns the storage layout of the contract.

pub fn spec(&self) -> &ContractSpec<CompactForm>[src]

Returns the specification of the contract.

Trait Implementations

impl Debug for InkProject[src]

impl<'de> Deserialize<'de> for InkProject[src]

impl Serialize for InkProject[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.