#[repr(u8)]pub enum IpActionType {
Assignment = 0,
License = 1,
Pledge = 2,
Release = 3,
ExclusiveLicense = 4,
NonExclusiveLicense = 5,
Sublicense = 6,
LicenseTermination = 7,
PledgeTransfer = 8,
PledgeRelease = 9,
}Expand description
IP action type
Variants§
Assignment = 0
Full assignment of rights
License = 1
License grant
Pledge = 2
Pledge/security interest
Release = 3
Release to public domain
ExclusiveLicense = 4
Exclusive license
NonExclusiveLicense = 5
Non-exclusive license
Sublicense = 6
Sublicense
LicenseTermination = 7
Termination of license
PledgeTransfer = 8
Transfer of pledge
PledgeRelease = 9
Release of pledge
Trait Implementations§
Source§impl Clone for IpActionType
impl Clone for IpActionType
Source§fn clone(&self) -> IpActionType
fn clone(&self) -> IpActionType
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 IpActionType
impl Debug for IpActionType
Source§impl<'de> Deserialize<'de> for IpActionType
impl<'de> Deserialize<'de> for IpActionType
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 IpActionType
impl PartialEq for IpActionType
Source§fn eq(&self, other: &IpActionType) -> bool
fn eq(&self, other: &IpActionType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IpActionType
impl Serialize for IpActionType
impl Copy for IpActionType
impl Eq for IpActionType
impl StructuralPartialEq for IpActionType
Auto Trait Implementations§
impl Freeze for IpActionType
impl RefUnwindSafe for IpActionType
impl Send for IpActionType
impl Sync for IpActionType
impl Unpin for IpActionType
impl UnsafeUnpin for IpActionType
impl UnwindSafe for IpActionType
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