[][src]Enum cw4::Cw4HandleMsg

pub enum Cw4HandleMsg {
    UpdateAdmin {
        admin: Option<HumanAddr>,
    },
    UpdateMembers {
        remove: Vec<HumanAddr>,
        add: Vec<Member>,
    },
}

Variants

UpdateAdmin

Change the admin

Fields of UpdateAdmin

admin: Option<HumanAddr>
UpdateMembers

apply a diff to the existing members. remove is applied after add, so if an address is in both, it is removed

Fields of UpdateMembers

remove: Vec<HumanAddr>add: Vec<Member>

Trait Implementations

impl Clone for Cw4HandleMsg[src]

impl Debug for Cw4HandleMsg[src]

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

impl JsonSchema for Cw4HandleMsg[src]

impl PartialEq<Cw4HandleMsg> for Cw4HandleMsg[src]

impl Serialize for Cw4HandleMsg[src]

impl StructuralPartialEq for Cw4HandleMsg[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.