pub struct AuthoredPluginList {
pub plugins: Option<Vec<AuthoredPlugin>>,
}Fields§
§plugins: Option<Vec<AuthoredPlugin>>Plugins is every plugin this org built, newest first, each carrying the TypeScript as authored. The bundled artifact is never rendered.
Implementations§
Source§impl AuthoredPluginList
impl AuthoredPluginList
pub fn new() -> AuthoredPluginList
Trait Implementations§
Source§impl Clone for AuthoredPluginList
impl Clone for AuthoredPluginList
Source§fn clone(&self) -> AuthoredPluginList
fn clone(&self) -> AuthoredPluginList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AuthoredPluginList
impl Debug for AuthoredPluginList
Source§impl Default for AuthoredPluginList
impl Default for AuthoredPluginList
Source§fn default() -> AuthoredPluginList
fn default() -> AuthoredPluginList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthoredPluginList
impl<'de> Deserialize<'de> for AuthoredPluginList
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
Source§impl PartialEq for AuthoredPluginList
impl PartialEq for AuthoredPluginList
Source§impl Serialize for AuthoredPluginList
impl Serialize for AuthoredPluginList
impl StructuralPartialEq for AuthoredPluginList
Auto Trait Implementations§
impl Freeze for AuthoredPluginList
impl RefUnwindSafe for AuthoredPluginList
impl Send for AuthoredPluginList
impl Sync for AuthoredPluginList
impl Unpin for AuthoredPluginList
impl UnsafeUnpin for AuthoredPluginList
impl UnwindSafe for AuthoredPluginList
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