pub struct ActionsCacheList {
pub total_count: i32,
pub actions_caches: Vec<ActionsCacheListActionsCachesInner>,
}
Expand description
ActionsCacheList : Repository actions caches
Fields§
§total_count: i32
Total number of caches
actions_caches: Vec<ActionsCacheListActionsCachesInner>
Array of caches
Implementations§
Source§impl ActionsCacheList
impl ActionsCacheList
Sourcepub fn new(
total_count: i32,
actions_caches: Vec<ActionsCacheListActionsCachesInner>,
) -> ActionsCacheList
pub fn new( total_count: i32, actions_caches: Vec<ActionsCacheListActionsCachesInner>, ) -> ActionsCacheList
Repository actions caches
Trait Implementations§
Source§impl Clone for ActionsCacheList
impl Clone for ActionsCacheList
Source§fn clone(&self) -> ActionsCacheList
fn clone(&self) -> ActionsCacheList
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 ActionsCacheList
impl Debug for ActionsCacheList
Source§impl Default for ActionsCacheList
impl Default for ActionsCacheList
Source§fn default() -> ActionsCacheList
fn default() -> ActionsCacheList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionsCacheList
impl<'de> Deserialize<'de> for ActionsCacheList
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 ActionsCacheList
impl PartialEq for ActionsCacheList
Source§impl Serialize for ActionsCacheList
impl Serialize for ActionsCacheList
impl StructuralPartialEq for ActionsCacheList
Auto Trait Implementations§
impl Freeze for ActionsCacheList
impl RefUnwindSafe for ActionsCacheList
impl Send for ActionsCacheList
impl Sync for ActionsCacheList
impl Unpin for ActionsCacheList
impl UnwindSafe for ActionsCacheList
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