pub struct DistributionSection {
pub channel: Channel,
pub targets: Vec<Target>,
pub updater: UpdaterSection,
}Fields§
§channel: Channel§targets: Vec<Target>§updater: UpdaterSectionImplementations§
Source§impl DistributionSection
impl DistributionSection
Sourcepub fn targets_needing_signing(&self) -> Vec<Target>
pub fn targets_needing_signing(&self) -> Vec<Target>
Targets that would ship unsigned unless CI has an identity for them.
Trait Implementations§
Source§impl Clone for DistributionSection
impl Clone for DistributionSection
Source§fn clone(&self) -> DistributionSection
fn clone(&self) -> DistributionSection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DistributionSection
impl Debug for DistributionSection
Source§impl Default for DistributionSection
impl Default for DistributionSection
Source§impl<'de> Deserialize<'de> for DistributionSectionwhere
DistributionSection: Default,
impl<'de> Deserialize<'de> for DistributionSectionwhere
DistributionSection: Default,
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 DistributionSection
impl RefUnwindSafe for DistributionSection
impl Send for DistributionSection
impl Sync for DistributionSection
impl Unpin for DistributionSection
impl UnsafeUnpin for DistributionSection
impl UnwindSafe for DistributionSection
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