pub struct PluginManifestServerExecutables {
pub linux_amd64: Option<String>,
pub darwin_amd64: Option<String>,
pub windows_amd64: Option<String>,
}
Expand description
PluginManifestServerExecutables : Paths to executable binaries, specifying multiple entry points for different platforms when bundled together in a single plugin.
Fields§
§linux_amd64: Option<String>
§darwin_amd64: Option<String>
§windows_amd64: Option<String>
Implementations§
Source§impl PluginManifestServerExecutables
impl PluginManifestServerExecutables
Sourcepub fn new() -> PluginManifestServerExecutables
pub fn new() -> PluginManifestServerExecutables
Paths to executable binaries, specifying multiple entry points for different platforms when bundled together in a single plugin.
Trait Implementations§
Source§impl Clone for PluginManifestServerExecutables
impl Clone for PluginManifestServerExecutables
Source§fn clone(&self) -> PluginManifestServerExecutables
fn clone(&self) -> PluginManifestServerExecutables
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for PluginManifestServerExecutables
impl Default for PluginManifestServerExecutables
Source§fn default() -> PluginManifestServerExecutables
fn default() -> PluginManifestServerExecutables
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PluginManifestServerExecutables
impl<'de> Deserialize<'de> for PluginManifestServerExecutables
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 PluginManifestServerExecutables
impl PartialEq for PluginManifestServerExecutables
Source§fn eq(&self, other: &PluginManifestServerExecutables) -> bool
fn eq(&self, other: &PluginManifestServerExecutables) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PluginManifestServerExecutables
Auto Trait Implementations§
impl Freeze for PluginManifestServerExecutables
impl RefUnwindSafe for PluginManifestServerExecutables
impl Send for PluginManifestServerExecutables
impl Sync for PluginManifestServerExecutables
impl Unpin for PluginManifestServerExecutables
impl UnwindSafe for PluginManifestServerExecutables
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