pub struct ProjectSubscriptions {
pub list: Option<Vec<String>>,
}Expand description
Config to enable subscribing to all events from a list of projects.
This type is not used in any activity, and only used as part of another schema.
Fields§
§list: Option<Vec<String>>Required. A list of projects to receive events from. All the projects must be in the same org. The listed projects should have the format project/{identifier} where identifier can be either the project id for project number. A single list may contain both formats. At most 100 projects can be listed.
Trait Implementations§
Source§impl Clone for ProjectSubscriptions
impl Clone for ProjectSubscriptions
Source§fn clone(&self) -> ProjectSubscriptions
fn clone(&self) -> ProjectSubscriptions
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 ProjectSubscriptions
impl Debug for ProjectSubscriptions
Source§impl Default for ProjectSubscriptions
impl Default for ProjectSubscriptions
Source§fn default() -> ProjectSubscriptions
fn default() -> ProjectSubscriptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectSubscriptions
impl<'de> Deserialize<'de> for ProjectSubscriptions
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 Serialize for ProjectSubscriptions
impl Serialize for ProjectSubscriptions
impl Part for ProjectSubscriptions
Auto Trait Implementations§
impl Freeze for ProjectSubscriptions
impl RefUnwindSafe for ProjectSubscriptions
impl Send for ProjectSubscriptions
impl Sync for ProjectSubscriptions
impl Unpin for ProjectSubscriptions
impl UnwindSafe for ProjectSubscriptions
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