pub struct GMTimelines {
pub timelines: Vec<GMTimeline>,
pub exists: bool,
}Fields§
§timelines: Vec<GMTimeline>§exists: boolTrait Implementations§
Source§impl Clone for GMTimelines
impl Clone for GMTimelines
Source§fn clone(&self) -> GMTimelines
fn clone(&self) -> GMTimelines
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 GMTimelines
impl Debug for GMTimelines
Source§impl Default for GMTimelines
impl Default for GMTimelines
Source§fn default() -> GMTimelines
fn default() -> GMTimelines
Returns the “default value” for a type. Read more
Source§impl GMChunk for GMTimelines
impl GMChunk for GMTimelines
Source§impl GMListChunk for GMTimelines
impl GMListChunk for GMTimelines
type Element = GMTimeline
fn elements(&self) -> &Vec<GMTimeline>
fn elements_mut(&mut self) -> &mut Vec<GMTimeline>
fn iter(&self) -> Iter<'_, Self::Element>
fn iter_mut(&mut self) -> IterMut<'_, Self::Element>
fn into_iter(self) -> IntoIter<Self::Element>
fn by_ref(&self, gm_ref: GMRef<Self::Element>) -> Result<&Self::Element>
fn by_ref_mut( &mut self, gm_ref: GMRef<Self::Element>, ) -> Result<&mut Self::Element>
fn push(&mut self, element: Self::Element)
fn len(&self) -> usize
fn is_empty(&self) -> bool
Source§impl GMNamedListChunk for GMTimelines
impl GMNamedListChunk for GMTimelines
fn ref_by_name(&self, name: &str) -> Result<GMRef<GMTimeline>>
fn by_name(&self, name: &str) -> Result<&GMTimeline>
fn by_name_mut(&mut self, name: &str) -> Result<&mut GMTimeline>
Source§impl Index<usize> for GMTimelines
impl Index<usize> for GMTimelines
Source§impl IndexMut<usize> for GMTimelines
impl IndexMut<usize> for GMTimelines
Source§impl<'a> IntoIterator for &'a GMTimelines
impl<'a> IntoIterator for &'a GMTimelines
Source§impl<'a> IntoIterator for &'a mut GMTimelines
impl<'a> IntoIterator for &'a mut GMTimelines
Source§impl IntoIterator for GMTimelines
impl IntoIterator for GMTimelines
Source§impl PartialEq for GMTimelines
impl PartialEq for GMTimelines
impl GMElement for GMTimelines
impl StructuralPartialEq for GMTimelines
Auto Trait Implementations§
impl Freeze for GMTimelines
impl RefUnwindSafe for GMTimelines
impl Send for GMTimelines
impl Sync for GMTimelines
impl Unpin for GMTimelines
impl UnsafeUnpin for GMTimelines
impl UnwindSafe for GMTimelines
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