pub enum OsListItem {
Image(OsImage),
SubList(OsSubList),
RemoteSubList(OsRemoteSubList),
}Expand description
Os List can contain multiple types of items depending on the situation.
Variants§
Image(OsImage)
Single Os Image
SubList(OsSubList)
SubList which itself can contain a list of OsListItem.
This is used to define Testing and other images which do not need to be present at the top level.
RemoteSubList(OsRemoteSubList)
SubList stored in a remote location.
This is used to define images managed/hosted outside of the normal BeagleBoard.org image infrastructure, such as from CI, etc.
Implementations§
Source§impl OsListItem
impl OsListItem
Trait Implementations§
Source§impl Clone for OsListItem
impl Clone for OsListItem
Source§fn clone(&self) -> OsListItem
fn clone(&self) -> OsListItem
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 OsListItem
impl Debug for OsListItem
Source§impl<'de> Deserialize<'de> for OsListItem
impl<'de> Deserialize<'de> for OsListItem
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 OsListItem
impl PartialEq for OsListItem
Source§impl Serialize for OsListItem
impl Serialize for OsListItem
impl Eq for OsListItem
impl StructuralPartialEq for OsListItem
Auto Trait Implementations§
impl Freeze for OsListItem
impl RefUnwindSafe for OsListItem
impl Send for OsListItem
impl Sync for OsListItem
impl Unpin for OsListItem
impl UnwindSafe for OsListItem
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