pub trait NetworkValidation: NetworkValidation + Sync + Send + Sized + Unpin {
    const IS_CHECKED: bool;
}
Expand description

Marker of status of address’s network validation. See section Parsing addresses on Address for details.

Required Associated Constants§

source

const IS_CHECKED: bool

Indicates whether this NetworkValidation is NetworkChecked or not.

Object Safety§

This trait is not object safe.

Implementors§