pub struct OrgRepoCustomPropertyValues {
pub repository_id: i32,
pub repository_name: String,
pub repository_full_name: String,
pub properties: Vec<CustomPropertyValue>,
}
Expand description
OrgRepoCustomPropertyValues : List of custom property values for a repository
Fields§
§repository_id: i32
§repository_name: String
§repository_full_name: String
§properties: Vec<CustomPropertyValue>
List of custom property names and associated values
Implementations§
Source§impl OrgRepoCustomPropertyValues
impl OrgRepoCustomPropertyValues
Sourcepub fn new(
repository_id: i32,
repository_name: String,
repository_full_name: String,
properties: Vec<CustomPropertyValue>,
) -> OrgRepoCustomPropertyValues
pub fn new( repository_id: i32, repository_name: String, repository_full_name: String, properties: Vec<CustomPropertyValue>, ) -> OrgRepoCustomPropertyValues
List of custom property values for a repository
Trait Implementations§
Source§impl Clone for OrgRepoCustomPropertyValues
impl Clone for OrgRepoCustomPropertyValues
Source§fn clone(&self) -> OrgRepoCustomPropertyValues
fn clone(&self) -> OrgRepoCustomPropertyValues
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 OrgRepoCustomPropertyValues
impl Debug for OrgRepoCustomPropertyValues
Source§impl Default for OrgRepoCustomPropertyValues
impl Default for OrgRepoCustomPropertyValues
Source§fn default() -> OrgRepoCustomPropertyValues
fn default() -> OrgRepoCustomPropertyValues
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrgRepoCustomPropertyValues
impl<'de> Deserialize<'de> for OrgRepoCustomPropertyValues
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
impl StructuralPartialEq for OrgRepoCustomPropertyValues
Auto Trait Implementations§
impl Freeze for OrgRepoCustomPropertyValues
impl RefUnwindSafe for OrgRepoCustomPropertyValues
impl Send for OrgRepoCustomPropertyValues
impl Sync for OrgRepoCustomPropertyValues
impl Unpin for OrgRepoCustomPropertyValues
impl UnwindSafe for OrgRepoCustomPropertyValues
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