pub struct ChainList {
pub chains: Option<Vec<Chain>>,
}Fields§
§chains: Option<Vec<Chain>>Chains is every chain this deployment is configured to reach, sorted by id. Empty when none are configured — never a fabricated entry.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ChainList
impl<'de> Deserialize<'de> for ChainList
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for ChainList
Auto Trait Implementations§
impl Freeze for ChainList
impl RefUnwindSafe for ChainList
impl Send for ChainList
impl Sync for ChainList
impl Unpin for ChainList
impl UnsafeUnpin for ChainList
impl UnwindSafe for ChainList
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more