pub struct AdditionalResource {
pub id: AdditionalResourceId,
pub display_name: String,
pub resource_type_id: ResourceTypeId,
pub resource_content: ResourceContent,
}
Expand description
Over-the-wire representation of a JIG or Playlist additional resource.
Fields§
§id: AdditionalResourceId
The additional resources’s ID.
display_name: String
Name for additional resource
resource_type_id: ResourceTypeId
Type of additional resource
resource_content: ResourceContent
Content of additional resource
Trait Implementations§
Source§impl Clone for AdditionalResource
impl Clone for AdditionalResource
Source§fn clone(&self) -> AdditionalResource
fn clone(&self) -> AdditionalResource
Returns a copy 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 AdditionalResource
impl Debug for AdditionalResource
Source§impl<'de> Deserialize<'de> for AdditionalResource
impl<'de> Deserialize<'de> for AdditionalResource
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
Auto Trait Implementations§
impl Freeze for AdditionalResource
impl RefUnwindSafe for AdditionalResource
impl Send for AdditionalResource
impl Sync for AdditionalResource
impl Unpin for AdditionalResource
impl UnwindSafe for AdditionalResource
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