#[repr(i32)]pub enum License {
Proprietary = 0,
Gpl = 1,
Bsd = 2,
}
Expand description
The license under which the plugin is being published.
Variants§
Proprietary = 0
A proprietary license.
Gpl = 1
The GNU General Public License.
Bsd = 2
The BSD license.
Trait Implementations§
impl Copy for License
impl Eq for License
impl StructuralPartialEq for License
Auto Trait Implementations§
impl Freeze for License
impl RefUnwindSafe for License
impl Send for License
impl Sync for License
impl Unpin for License
impl UnwindSafe for License
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