pub struct ExternalPluginAdaptersList {
pub lifecycle_hooks: Vec<LifecycleHookWithData>,
pub linked_lifecycle_hooks: Vec<LinkedLifecycleHook>,
pub oracles: Vec<Oracle>,
pub app_data: Vec<AppDataWithData>,
pub linked_app_data: Vec<LinkedAppData>,
pub data_sections: Vec<DataSectionWithData>,
}
Fields§
§lifecycle_hooks: Vec<LifecycleHookWithData>
§linked_lifecycle_hooks: Vec<LinkedLifecycleHook>
§oracles: Vec<Oracle>
§app_data: Vec<AppDataWithData>
§linked_app_data: Vec<LinkedAppData>
§data_sections: Vec<DataSectionWithData>
Trait Implementations§
Source§impl Debug for ExternalPluginAdaptersList
impl Debug for ExternalPluginAdaptersList
Source§impl Default for ExternalPluginAdaptersList
impl Default for ExternalPluginAdaptersList
Source§fn default() -> ExternalPluginAdaptersList
fn default() -> ExternalPluginAdaptersList
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ExternalPluginAdaptersList
impl RefUnwindSafe for ExternalPluginAdaptersList
impl Send for ExternalPluginAdaptersList
impl Sync for ExternalPluginAdaptersList
impl Unpin for ExternalPluginAdaptersList
impl UnwindSafe for ExternalPluginAdaptersList
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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