#[non_exhaustive]pub struct HostingService {
pub service_uri: String,
/* private fields */
}Expand description
The information related to the service implemented by the plugin developer, used to invoke the plugin’s functionality.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.service_uri: StringOptional. The URI of the service implemented by the plugin developer, used to invoke the plugin’s functionality. This information is only required for user defined plugins.
Implementations§
Source§impl HostingService
impl HostingService
Trait Implementations§
Source§impl Clone for HostingService
impl Clone for HostingService
Source§fn clone(&self) -> HostingService
fn clone(&self) -> HostingService
Returns a duplicate of the value. Read more
1.0.0 · 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 HostingService
impl Debug for HostingService
Source§impl Default for HostingService
impl Default for HostingService
Source§fn default() -> HostingService
fn default() -> HostingService
Returns the “default value” for a type. Read more
Source§impl Message for HostingService
impl Message for HostingService
Source§impl PartialEq for HostingService
impl PartialEq for HostingService
impl StructuralPartialEq for HostingService
Auto Trait Implementations§
impl Freeze for HostingService
impl RefUnwindSafe for HostingService
impl Send for HostingService
impl Sync for HostingService
impl Unpin for HostingService
impl UnsafeUnpin for HostingService
impl UnwindSafe for HostingService
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