2020-05-17 17:17:09 +00:00
|
|
|
//! Types and traits for dealing with Activity attributes
|
|
|
|
//!
|
|
|
|
//! ```rust
|
|
|
|
//! # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
//! use activitystreams_new::{
|
|
|
|
//! activity::Create,
|
|
|
|
//! context,
|
|
|
|
//! prelude::*,
|
|
|
|
//! primitives::XsdAnyUri,
|
|
|
|
//! };
|
|
|
|
//!
|
2020-05-17 19:35:10 +00:00
|
|
|
//! let mut create = Create::new(
|
|
|
|
//! "https://example.com/actors/abcd".parse::<XsdAnyUri>()?,
|
|
|
|
//! "https://example.com/notes/1234".parse::<XsdAnyUri>()?,
|
|
|
|
//! );
|
2020-05-17 17:17:09 +00:00
|
|
|
//!
|
|
|
|
//! create
|
|
|
|
//! .set_result("https://example.com/".parse::<XsdAnyUri>()?)
|
|
|
|
//! .set_instrument("https://example.com/".parse::<XsdAnyUri>()?)
|
|
|
|
//! .set_id("https://example.com/activities/abcd".parse()?)
|
|
|
|
//! .set_context(context());
|
|
|
|
//! # Ok(())
|
|
|
|
//! # }
|
|
|
|
//! ```
|
2020-05-14 03:54:50 +00:00
|
|
|
use crate::{
|
2020-05-15 22:01:29 +00:00
|
|
|
base::{AnyBase, AsBase, Base, Extends},
|
|
|
|
markers,
|
|
|
|
object::{ApObject, AsObject, Object},
|
|
|
|
primitives::OneOrMany,
|
|
|
|
unparsed::{Unparsed, UnparsedMut, UnparsedMutExt},
|
2020-05-14 03:54:50 +00:00
|
|
|
};
|
|
|
|
use std::convert::TryFrom;
|
2020-05-14 16:23:38 +00:00
|
|
|
use typed_builder::TypedBuilder;
|
2020-05-14 03:54:50 +00:00
|
|
|
|
|
|
|
pub mod kind {
|
2020-05-17 17:17:09 +00:00
|
|
|
//! Kinds of activities defined by the spec
|
|
|
|
//!
|
|
|
|
//! These types exist only to be statically-typed versions of the associated string. e.g.
|
|
|
|
//! `CreateType` -> `"Create"`
|
|
|
|
|
2020-05-14 03:54:50 +00:00
|
|
|
pub use activitystreams::activity::kind::*;
|
|
|
|
}
|
|
|
|
|
|
|
|
use self::kind::*;
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Implementation trait for deriving Activity methods for a type
|
|
|
|
///
|
|
|
|
/// Any type implementing AsObject will automatically gain methods provided by ActivityExt
|
2020-05-15 22:01:29 +00:00
|
|
|
pub trait AsActivity<Kind>: markers::Activity {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Immutable borrow of `Activity<Kind>`
|
2020-05-15 03:18:34 +00:00
|
|
|
fn activity_ref(&self) -> &Activity<Kind>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Mutable borrow of `Activity<Kind>`
|
2020-05-15 03:18:34 +00:00
|
|
|
fn activity_mut(&mut self) -> &mut Activity<Kind>;
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Implementation trait for deriving Actor and Object methods for a type
|
|
|
|
///
|
|
|
|
/// Any type implementing ActorAndObjectRef will automatically gain methods provided by
|
|
|
|
/// `ActorAndObjectRefExt`
|
2020-05-15 22:01:29 +00:00
|
|
|
pub trait ActorAndObjectRef: markers::Activity {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Immutable borrow of actor field
|
2020-05-15 22:01:29 +00:00
|
|
|
fn actor_field_ref(&self) -> &OneOrMany<AnyBase>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Mutable borrow of actor field
|
2020-05-15 22:01:29 +00:00
|
|
|
fn object_field_ref(&self) -> &OneOrMany<AnyBase>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Immutable borrow of object field
|
2020-05-15 22:01:29 +00:00
|
|
|
fn actor_field_mut(&mut self) -> &mut OneOrMany<AnyBase>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Mutable borrow of object field
|
2020-05-15 22:01:29 +00:00
|
|
|
fn object_field_mut(&mut self) -> &mut OneOrMany<AnyBase>;
|
2020-05-15 03:18:34 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Implementation trait for deriving Target methods for a type
|
|
|
|
///
|
|
|
|
/// Any type implementing TargetRef will automatically gain methods provided by `TargetRefExt`
|
2020-05-15 22:01:29 +00:00
|
|
|
pub trait TargetRef: markers::Activity {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Immutable borrow of target field
|
2020-05-15 22:01:29 +00:00
|
|
|
fn target_field_ref(&self) -> &OneOrMany<AnyBase>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Mutable borrow of target field
|
2020-05-15 22:01:29 +00:00
|
|
|
fn target_field_mut(&mut self) -> &mut OneOrMany<AnyBase>;
|
2020-05-15 03:18:34 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Implementation trait for deriving Origin methods for a type
|
|
|
|
///
|
|
|
|
/// Any type implementing OriginRef will automatically gain methods provided by
|
|
|
|
/// `OriginRefExt`
|
2020-05-15 22:01:29 +00:00
|
|
|
pub trait OriginRef: markers::Activity {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Immutable borrow of origin field
|
2020-05-15 22:01:29 +00:00
|
|
|
fn origin_field_ref(&self) -> &OneOrMany<AnyBase>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Mutable borrow of origin field
|
2020-05-15 22:01:29 +00:00
|
|
|
fn origin_field_mut(&mut self) -> &mut OneOrMany<AnyBase>;
|
2020-05-15 03:18:34 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Implementation trait for deriving Target methods for a type
|
|
|
|
///
|
|
|
|
/// Any type implementing OptTargetRef will automatically gain methods provided by
|
|
|
|
/// `OptTargetRefExt`
|
2020-05-15 22:01:29 +00:00
|
|
|
pub trait OptTargetRef: markers::Activity {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Immutable borrow of target field
|
2020-05-15 22:01:29 +00:00
|
|
|
fn target_field_ref(&self) -> &Option<OneOrMany<AnyBase>>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Mutable borrow of target field
|
2020-05-15 22:01:29 +00:00
|
|
|
fn target_field_mut(&mut self) -> &mut Option<OneOrMany<AnyBase>>;
|
2020-05-15 03:18:34 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Implementation trait for deriving Origin methods for a type
|
|
|
|
///
|
|
|
|
/// Any type implementing OptOriginRef will automatically gain methods provided by
|
|
|
|
/// `OptOriginRefExt`
|
2020-05-15 22:01:29 +00:00
|
|
|
pub trait OptOriginRef: markers::Activity {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Immutable borrow of origin field
|
2020-05-15 22:01:29 +00:00
|
|
|
fn origin_field_ref(&self) -> &Option<OneOrMany<AnyBase>>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Mutable borrow of origin field
|
2020-05-15 22:01:29 +00:00
|
|
|
fn origin_field_mut(&mut self) -> &mut Option<OneOrMany<AnyBase>>;
|
2020-05-15 03:18:34 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Implementation trait for deriving Question methods for a type
|
|
|
|
///
|
|
|
|
/// Any type implementing AsQuestion will automatically gain methods provided by
|
|
|
|
/// `QuestionExt`
|
2020-05-15 22:01:29 +00:00
|
|
|
pub trait AsQuestion: markers::Activity {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Immutable borrow of Question
|
2020-05-15 03:18:34 +00:00
|
|
|
fn question_ref(&self) -> &Question;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Mutable borrow of Question
|
2020-05-15 03:18:34 +00:00
|
|
|
fn question_mut(&mut self) -> &mut Question;
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Helper methods for interacting with Activity types
|
|
|
|
///
|
|
|
|
/// This trait represents methods valid for any ActivityStreams Activity
|
|
|
|
///
|
|
|
|
/// Documentation for the fields related to these methods can be found on the `Activity`
|
|
|
|
/// struct
|
2020-05-15 22:01:29 +00:00
|
|
|
pub trait ActivityExt<Kind>: AsActivity<Kind> {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Fetch the result for the current activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use activitystreams_new::activity::Question;
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
/// #
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
///
|
|
|
|
/// if let Some(result) = question.result() {
|
|
|
|
/// println!("{:?}", result);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2020-05-15 22:01:29 +00:00
|
|
|
fn result<'a>(&'a self) -> Option<&'a OneOrMany<AnyBase>>
|
2020-05-15 03:18:34 +00:00
|
|
|
where
|
|
|
|
Kind: 'a,
|
|
|
|
{
|
|
|
|
self.activity_ref().result.as_ref()
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set the result for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of result
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{activity::Question, primitives::XsdAnyUri};
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// question.set_result("https://example.com".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_result<T>(&mut self, result: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
self.activity_mut().result = Some(result.into().into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set many results for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of result
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{activity::Question, primitives::XsdAnyUri};
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// question.set_many_results(vec![
|
|
|
|
/// "https://example.com/one".parse::<XsdAnyUri>()?,
|
|
|
|
/// "https://example.com/two".parse()?,
|
|
|
|
/// ]);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_many_results<I, T>(&mut self, items: I) -> &mut Self
|
|
|
|
where
|
|
|
|
I: IntoIterator<Item = T>,
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
let v: Vec<_> = items.into_iter().map(Into::into).collect();
|
|
|
|
self.activity_mut().result = Some(v.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Add a result to the current activity
|
|
|
|
///
|
|
|
|
/// This does not overwrite the contents of result, only appends an item
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{activity::Question, primitives::XsdAnyUri};
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// question
|
|
|
|
/// .add_result("https://example.com/one".parse::<XsdAnyUri>()?)
|
|
|
|
/// .add_result("https://example.com/two".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn add_result<T>(&mut self, result: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
let c = match self.activity_mut().result.take() {
|
|
|
|
Some(mut c) => {
|
|
|
|
c.add(result.into());
|
|
|
|
c
|
|
|
|
}
|
|
|
|
None => vec![result.into()].into(),
|
|
|
|
};
|
|
|
|
self.activity_mut().result = Some(c);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Take the result from the current activity, leaving nothing
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use activitystreams_new::activity::Question;
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
/// #
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
///
|
|
|
|
/// if let Some(result) = question.take_result() {
|
|
|
|
/// println!("{:?}", result);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2020-05-15 22:01:29 +00:00
|
|
|
fn take_result(&mut self) -> Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.activity_mut().result.take()
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Delete the result from the current activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// # use activitystreams_new::{activity::Question, primitives::XsdAnyUri};
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
/// # question.set_result("https://example.com".parse::<XsdAnyUri>()?);
|
|
|
|
/// #
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
///
|
|
|
|
/// assert!(question.result().is_some());
|
|
|
|
/// question.delete_result();
|
|
|
|
/// assert!(question.result().is_none());
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn delete_result(&mut self) -> &mut Self {
|
|
|
|
self.activity_mut().result = None;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Fetch the instrument for the current activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use activitystreams_new::activity::Question;
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
/// #
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
///
|
|
|
|
/// if let Some(instrument) = question.instrument() {
|
|
|
|
/// println!("{:?}", instrument);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2020-05-15 22:01:29 +00:00
|
|
|
fn instrument<'a>(&'a self) -> Option<&'a OneOrMany<AnyBase>>
|
|
|
|
where
|
|
|
|
Kind: 'a,
|
|
|
|
{
|
|
|
|
self.activity_ref().instrument.as_ref()
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set the instrument for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of instrument
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{activity::Question, primitives::XsdAnyUri};
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// question.set_instrument("https://example.com".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_instrument<T>(&mut self, instrument: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
self.activity_mut().instrument = Some(instrument.into().into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set many instruments for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of instrument
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{activity::Question, primitives::XsdAnyUri};
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// question.set_many_instruments(vec![
|
|
|
|
/// "https://example.com/one".parse::<XsdAnyUri>()?,
|
|
|
|
/// "https://example.com/two".parse()?,
|
|
|
|
/// ]);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_many_instruments<I, T>(&mut self, items: I) -> &mut Self
|
|
|
|
where
|
|
|
|
I: IntoIterator<Item = T>,
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
let v: Vec<_> = items.into_iter().map(Into::into).collect();
|
|
|
|
self.activity_mut().instrument = Some(v.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Add a instrument to the current activity
|
|
|
|
///
|
|
|
|
/// This does not overwrite the contents of instrument, only appends an item
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{activity::Question, primitives::XsdAnyUri};
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// question
|
|
|
|
/// .add_instrument("https://example.com/one".parse::<XsdAnyUri>()?)
|
|
|
|
/// .add_instrument("https://example.com/two".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn add_instrument<T>(&mut self, instrument: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
let c = match self.activity_mut().instrument.take() {
|
|
|
|
Some(mut c) => {
|
|
|
|
c.add(instrument.into());
|
|
|
|
c
|
|
|
|
}
|
|
|
|
None => vec![instrument.into()].into(),
|
|
|
|
};
|
|
|
|
self.activity_mut().instrument = Some(c);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Take the instrument from the current activity, leaving nothing
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use activitystreams_new::activity::Question;
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
/// #
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
///
|
|
|
|
/// if let Some(instrument) = question.take_instrument() {
|
|
|
|
/// println!("{:?}", instrument);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2020-05-15 22:01:29 +00:00
|
|
|
fn take_instrument(&mut self) -> Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.activity_mut().instrument.take()
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Delete the instrument from the current activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// # use activitystreams_new::{activity::Question, primitives::XsdAnyUri};
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
/// # question.set_instrument("https://example.com".parse::<XsdAnyUri>()?);
|
|
|
|
/// #
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
///
|
|
|
|
/// assert!(question.instrument().is_some());
|
|
|
|
/// question.delete_instrument();
|
|
|
|
/// assert!(question.instrument().is_none());
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn delete_instrument(&mut self) -> &mut Self {
|
|
|
|
self.activity_mut().instrument = None;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Helper methods for interacting with Activity types with actor and object fields
|
|
|
|
///
|
|
|
|
/// Documentation for the fields related to these methods can be found on the
|
|
|
|
/// `ActorAndObject` struct
|
2020-05-15 03:18:34 +00:00
|
|
|
pub trait ActorAndObjectRefExt: ActorAndObjectRef {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Fetch the actor for the current activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use activitystreams_new::{context, activity::Create};
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut create = Create::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
/// #
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
///
|
|
|
|
/// let actor_ref = create.actor();
|
|
|
|
/// println!("{:?}", actor_ref);
|
|
|
|
/// ```
|
2020-05-15 22:01:29 +00:00
|
|
|
fn actor(&self) -> &OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.actor_field_ref()
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set the actor for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of actor
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Create,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut create = Create::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// create.set_actor("https://example.com".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_actor<T>(&mut self, actor: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
*self.actor_field_mut() = actor.into().into();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set many actors for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of actor
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Create,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut create = Create::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// create.set_many_actors(vec![
|
|
|
|
/// "https://example.com/one".parse::<XsdAnyUri>()?,
|
|
|
|
/// "https://example.com/two".parse()?,
|
|
|
|
/// ]);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_many_actors<I, T>(&mut self, items: I) -> &mut Self
|
|
|
|
where
|
|
|
|
I: IntoIterator<Item = T>,
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
let v: Vec<_> = items.into_iter().map(Into::into).collect();
|
|
|
|
*self.actor_field_mut() = v.into();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Add a actor to the current activity
|
|
|
|
///
|
|
|
|
/// This does not overwrite the contents of actor, only appends an item
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Create,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut create = Create::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// create
|
|
|
|
/// .add_actor("https://example.com/one".parse::<XsdAnyUri>()?)
|
|
|
|
/// .add_actor("https://example.com/two".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn add_actor<T>(&mut self, actor: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
self.actor_field_mut().add(actor.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Fetch the object for the current activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use activitystreams_new::{context, activity::Create};
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut create = Create::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
/// #
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
///
|
|
|
|
/// let object_ref = create.object();
|
|
|
|
/// println!("{:?}", object_ref);
|
|
|
|
/// ```
|
2020-05-15 22:01:29 +00:00
|
|
|
fn object(&self) -> &OneOrMany<AnyBase> {
|
|
|
|
self.object_field_ref()
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set the object for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of object
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Create,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut create = Create::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// create.set_object("https://example.com".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_object<T>(&mut self, object: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
*self.object_field_mut() = object.into().into();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set many objects for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of object
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Create,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut create = Create::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// create.set_many_objects(vec![
|
|
|
|
/// "https://example.com/one".parse::<XsdAnyUri>()?,
|
|
|
|
/// "https://example.com/two".parse()?,
|
|
|
|
/// ]);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_many_objects<I, T>(&mut self, items: I) -> &mut Self
|
|
|
|
where
|
|
|
|
I: IntoIterator<Item = T>,
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
let v: Vec<_> = items.into_iter().map(Into::into).collect();
|
|
|
|
*self.object_field_mut() = v.into();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Add a object to the current activity
|
|
|
|
///
|
|
|
|
/// This does not overwrite the contents of object, only appends an item
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Create,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut create = Create::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// create
|
|
|
|
/// .add_object("https://example.com/one".parse::<XsdAnyUri>()?)
|
|
|
|
/// .add_object("https://example.com/two".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn add_object<T>(&mut self, object: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
self.object_field_mut().add(object.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Helper methods for interacting with Activity types with a target field
|
|
|
|
///
|
|
|
|
/// Documentation for the target field can be found on the `Invite` struct
|
2020-05-15 03:18:34 +00:00
|
|
|
pub trait TargetRefExt: TargetRef {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Fetch the target for the current activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use activitystreams_new::{context, activity::Invite};
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut invite = Invite::new(context(), context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
/// #
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
///
|
|
|
|
/// let target_ref = invite.target();
|
|
|
|
/// println!("{:?}", target_ref);
|
|
|
|
/// ```
|
2020-05-15 22:01:29 +00:00
|
|
|
fn target(&self) -> &OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.target_field_ref()
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set the target for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of target
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Invite,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut invite = Invite::new(context(), context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// invite.set_target("https://example.com".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_target<T>(&mut self, target: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
*self.target_field_mut() = target.into().into();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set many targets for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of target
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Invite,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut invite = Invite::new(context(), context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// invite.set_many_targets(vec![
|
|
|
|
/// "https://example.com/one".parse::<XsdAnyUri>()?,
|
|
|
|
/// "https://example.com/two".parse()?,
|
|
|
|
/// ]);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_many_targets<I, T>(&mut self, items: I) -> &mut Self
|
|
|
|
where
|
|
|
|
I: IntoIterator<Item = T>,
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
let v: Vec<_> = items.into_iter().map(Into::into).collect();
|
|
|
|
*self.target_field_mut() = v.into();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Add a target to the current activity
|
|
|
|
///
|
|
|
|
/// This does not overwrite the contents of target, only appends an item
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Invite,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut invite = Invite::new(context(), context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// invite
|
|
|
|
/// .add_target("https://example.com/one".parse::<XsdAnyUri>()?)
|
|
|
|
/// .add_target("https://example.com/two".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn add_target<T>(&mut self, target: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
self.target_field_mut().add(target.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Helper methods for interacting with Activity types with an origin
|
|
|
|
///
|
|
|
|
/// Documentation for the origin field can be found on the `Arrive` struct
|
2020-05-15 03:18:34 +00:00
|
|
|
pub trait OriginRefExt: OriginRef {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Fetch the origin for the current activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use activitystreams_new::{context, activity::Arrive};
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut arrive = Arrive::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
/// #
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
///
|
|
|
|
/// let origin_ref = arrive.origin();
|
|
|
|
/// println!("{:?}", origin_ref);
|
|
|
|
/// ```
|
2020-05-15 22:01:29 +00:00
|
|
|
fn origin(&self) -> &OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.origin_field_ref()
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set the origin for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of origin
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Arrive,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut arrive = Arrive::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// arrive.set_origin("https://example.com".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_origin<T>(&mut self, origin: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
*self.origin_field_mut() = origin.into().into();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set many origins for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of origin
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Arrive,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut arrive = Arrive::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// arrive.set_many_origins(vec![
|
|
|
|
/// "https://example.com/one".parse::<XsdAnyUri>()?,
|
|
|
|
/// "https://example.com/two".parse()?,
|
|
|
|
/// ]);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_many_origins<I, T>(&mut self, items: I) -> &mut Self
|
|
|
|
where
|
|
|
|
I: IntoIterator<Item = T>,
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
let v: Vec<_> = items.into_iter().map(Into::into).collect();
|
|
|
|
*self.origin_field_mut() = v.into();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Add a origin to the current activity
|
|
|
|
///
|
|
|
|
/// This does not overwrite the contents of origin, only appends an item
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Arrive,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut arrive = Arrive::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// arrive
|
|
|
|
/// .add_origin("https://example.com/one".parse::<XsdAnyUri>()?)
|
|
|
|
/// .add_origin("https://example.com/two".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn add_origin<T>(&mut self, origin: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
self.origin_field_mut().add(origin.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Helper methods for interacting with Activity types with an optional target field
|
|
|
|
///
|
|
|
|
/// Documentation for the target field can be found on the
|
|
|
|
/// `ActorAndObjectOptTarget` struct
|
2020-05-15 03:18:34 +00:00
|
|
|
pub trait OptTargetRefExt: OptTargetRef {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Fetch the target for the current activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use activitystreams_new::{context, activity::Announce};
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut announce = Announce::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
/// #
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
///
|
|
|
|
/// if let Some(target_ref) = announce.target() {
|
|
|
|
/// println!("{:?}", target_ref);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2020-05-15 22:01:29 +00:00
|
|
|
fn target(&self) -> Option<&OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.target_field_ref().as_ref()
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set the target for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of target
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Announce,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut announce = Announce::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// announce.set_target("https://example.com".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_target<T>(&mut self, target: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
*self.target_field_mut() = Some(target.into().into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set many targets for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of target
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Announce,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut announce = Announce::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// announce.set_many_targets(vec![
|
|
|
|
/// "https://example.com/one".parse::<XsdAnyUri>()?,
|
|
|
|
/// "https://example.com/two".parse()?,
|
|
|
|
/// ]);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_many_targets<I, T>(&mut self, items: I) -> &mut Self
|
|
|
|
where
|
|
|
|
I: IntoIterator<Item = T>,
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
let v: Vec<_> = items.into_iter().map(Into::into).collect();
|
|
|
|
*self.target_field_mut() = Some(v.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Add a target to the current activity
|
|
|
|
///
|
|
|
|
/// This does not overwrite the contents of target, only appends an item
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Announce,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut announce = Announce::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// announce
|
|
|
|
/// .add_target("https://example.com/one".parse::<XsdAnyUri>()?)
|
|
|
|
/// .add_target("https://example.com/two".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn add_target<T>(&mut self, target: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
let c = match self.target_field_mut().take() {
|
|
|
|
Some(mut c) => {
|
|
|
|
c.add(target.into());
|
|
|
|
c
|
|
|
|
}
|
|
|
|
None => vec![target.into()].into(),
|
|
|
|
};
|
|
|
|
*self.target_field_mut() = Some(c);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Take a target from the current activity, leaving nothing
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Announce,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut announce = Announce::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// if let Some(target) = announce.take_target() {
|
|
|
|
/// println!("{:?}", target);
|
|
|
|
/// }
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 22:01:29 +00:00
|
|
|
fn take_target(&mut self) -> Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.target_field_mut().take()
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Delete a target from the current activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Announce,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut announce = Announce::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
/// # announce.set_target(context());
|
|
|
|
///
|
|
|
|
/// assert!(announce.target().is_some());
|
|
|
|
/// announce.delete_target();
|
|
|
|
/// assert!(announce.target().is_none());
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn delete_target(&mut self) -> &mut Self {
|
|
|
|
*self.target_field_mut() = None;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Helper methods for interacting with Activity types with an optional origin field
|
|
|
|
///
|
|
|
|
/// Documentation for the origin field can be found on the
|
|
|
|
/// `Delete` struct
|
2020-05-15 03:18:34 +00:00
|
|
|
pub trait OptOriginRefExt: OptOriginRef {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Fetch the origin for the current activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use activitystreams_new::{context, activity::Delete};
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut delete = Delete::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
/// #
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
///
|
|
|
|
/// if let Some(origin_ref) = delete.origin() {
|
|
|
|
/// println!("{:?}", origin_ref);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2020-05-15 22:01:29 +00:00
|
|
|
fn origin(&self) -> Option<&OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.origin_field_ref().as_ref()
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set the origin for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of origin
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Delete,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut delete = Delete::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// delete.set_origin("https://example.com".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_origin<T>(&mut self, origin: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
*self.origin_field_mut() = Some(origin.into().into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set many origins for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of origin
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Delete,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut delete = Delete::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// delete.set_many_origins(vec![
|
|
|
|
/// "https://example.com/one".parse::<XsdAnyUri>()?,
|
|
|
|
/// "https://example.com/two".parse()?,
|
|
|
|
/// ]);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_many_origins<I, T>(&mut self, items: I) -> &mut Self
|
|
|
|
where
|
|
|
|
I: IntoIterator<Item = T>,
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
let v: Vec<_> = items.into_iter().map(Into::into).collect();
|
|
|
|
*self.origin_field_mut() = Some(v.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Add a origin to the current activity
|
|
|
|
///
|
|
|
|
/// This does not overwrite the contents of origin, only appends an item
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Delete,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut delete = Delete::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// delete
|
|
|
|
/// .add_origin("https://example.com/one".parse::<XsdAnyUri>()?)
|
|
|
|
/// .add_origin("https://example.com/two".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn add_origin<T>(&mut self, origin: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
let c = match self.origin_field_mut().take() {
|
|
|
|
Some(mut c) => {
|
|
|
|
c.add(origin.into());
|
|
|
|
c
|
|
|
|
}
|
|
|
|
None => vec![origin.into()].into(),
|
|
|
|
};
|
|
|
|
*self.origin_field_mut() = Some(c);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Take a origin from the current activity, leaving nothing
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Delete,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut delete = Delete::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// if let Some(origin) = delete.take_origin() {
|
|
|
|
/// println!("{:?}", origin);
|
|
|
|
/// }
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 22:01:29 +00:00
|
|
|
fn take_origin(&mut self) -> Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.origin_field_mut().take()
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Delete a origin from the current activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{
|
|
|
|
/// # context,
|
|
|
|
/// # activity::Delete,
|
|
|
|
/// # primitives::XsdAnyUri
|
|
|
|
/// # };
|
2020-05-17 19:35:10 +00:00
|
|
|
/// # let mut delete = Delete::new(context(), context());
|
2020-05-17 17:17:09 +00:00
|
|
|
/// # delete.set_origin(context());
|
|
|
|
///
|
|
|
|
/// assert!(delete.origin().is_some());
|
|
|
|
/// delete.delete_origin();
|
|
|
|
/// assert!(delete.origin().is_none());
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn delete_origin(&mut self) -> &mut Self {
|
|
|
|
*self.origin_field_mut() = None;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Helper methods for interacting with Question types
|
|
|
|
///
|
|
|
|
/// This trait represents methods valid for an ActivityStreams Question
|
|
|
|
///
|
|
|
|
/// Documentation for the fields related to these methods can be found on the `Question`
|
|
|
|
/// struct
|
2020-05-15 22:01:29 +00:00
|
|
|
pub trait QuestionExt: AsQuestion {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Fetch the one_of field for the current activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use activitystreams_new::activity::Question;
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
/// #
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
///
|
|
|
|
/// if let Some(one_of) = question.one_of() {
|
|
|
|
/// println!("{:?}", one_of);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2020-05-15 22:01:29 +00:00
|
|
|
fn one_of(&self) -> Option<&OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.question_ref().one_of.as_ref()
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set the one_of field for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of one_of
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{activity::Question, primitives::XsdAnyUri};
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// question.set_one_of("https://example.com".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_one_of<T>(&mut self, one_of: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
self.question_mut().one_of = Some(one_of.into().into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set many one_of items for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of one_of
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{activity::Question, primitives::XsdAnyUri};
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// question.set_many_one_ofs(vec![
|
|
|
|
/// "https://example.com/one".parse::<XsdAnyUri>()?,
|
|
|
|
/// "https://example.com/two".parse()?,
|
|
|
|
/// ]);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_many_one_ofs<I, T>(&mut self, items: I) -> &mut Self
|
|
|
|
where
|
|
|
|
I: IntoIterator<Item = T>,
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
let v: Vec<_> = items.into_iter().map(Into::into).collect();
|
|
|
|
self.question_mut().one_of = Some(v.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Add a one_of to the current activity
|
|
|
|
///
|
|
|
|
/// This does not overwrite the contents of one_of, only appends an item
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{activity::Question, primitives::XsdAnyUri};
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// question
|
|
|
|
/// .add_one_of("https://example.com/one".parse::<XsdAnyUri>()?)
|
|
|
|
/// .add_one_of("https://example.com/two".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn add_one_of<T>(&mut self, one_of: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
let v = match self.question_mut().one_of.take() {
|
|
|
|
Some(mut v) => {
|
|
|
|
v.add(one_of.into());
|
|
|
|
v
|
|
|
|
}
|
|
|
|
None => vec![one_of.into()].into(),
|
|
|
|
};
|
|
|
|
self.question_mut().one_of = Some(v);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Take the one_of field from the current activity, leaving nothing
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use activitystreams_new::activity::Question;
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
/// #
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
///
|
|
|
|
/// if let Some(one_of) = question.take_one_of() {
|
|
|
|
/// println!("{:?}", one_of);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2020-05-15 22:01:29 +00:00
|
|
|
fn take_one_of(&mut self) -> Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.question_mut().one_of.take()
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Delete the one_of field from the current activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// # use activitystreams_new::{activity::Question, primitives::XsdAnyUri};
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
/// # question.set_one_of("https://example.com".parse::<XsdAnyUri>()?);
|
|
|
|
/// #
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
///
|
|
|
|
/// assert!(question.one_of().is_some());
|
|
|
|
/// question.delete_one_of();
|
|
|
|
/// assert!(question.one_of().is_none());
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn delete_one_of(&mut self) -> &mut Self {
|
|
|
|
self.question_mut().one_of = None;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Fetch the any_of field for the current activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use activitystreams_new::activity::Question;
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
/// #
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
///
|
|
|
|
/// if let Some(any_of) = question.any_of() {
|
|
|
|
/// println!("{:?}", any_of);
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
fn any_of(&self) -> Option<&OneOrMany<AnyBase>> {
|
|
|
|
self.question_ref().any_of.as_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set the any_of field for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of any_of
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{activity::Question, primitives::XsdAnyUri};
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// question.set_any_of("https://example.com".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_any_of<T>(&mut self, any_of: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
self.question_mut().any_of = Some(any_of.into().into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Set many any_of items for the current activity
|
|
|
|
///
|
|
|
|
/// This overwrites the contents of any_of
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{activity::Question, primitives::XsdAnyUri};
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// question.set_many_any_ofs(vec![
|
|
|
|
/// "https://example.com/one".parse::<XsdAnyUri>()?,
|
|
|
|
/// "https://example.com/two".parse()?,
|
|
|
|
/// ]);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn set_many_any_ofs<I, T>(&mut self, items: I) -> &mut Self
|
|
|
|
where
|
|
|
|
I: IntoIterator<Item = T>,
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
let v: Vec<_> = items.into_iter().map(Into::into).collect();
|
|
|
|
self.question_mut().any_of = Some(v.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Add an any_of to the current activity
|
|
|
|
///
|
|
|
|
/// This does not overwrite the contents of any_of, only appends an item
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
/// # use activitystreams_new::{activity::Question, primitives::XsdAnyUri};
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
///
|
|
|
|
/// question
|
|
|
|
/// .add_any_of("https://example.com/one".parse::<XsdAnyUri>()?)
|
|
|
|
/// .add_any_of("https://example.com/two".parse::<XsdAnyUri>()?);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn add_any_of<T>(&mut self, any_of: T) -> &mut Self
|
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
T: Into<AnyBase>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
let v = match self.question_mut().any_of.take() {
|
|
|
|
Some(mut v) => {
|
|
|
|
v.add(any_of.into());
|
|
|
|
v
|
|
|
|
}
|
|
|
|
None => vec![any_of.into()].into(),
|
|
|
|
};
|
|
|
|
self.question_mut().any_of = Some(v);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Take the any_of field from the current activity, leaving nothing
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use activitystreams_new::activity::Question;
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
/// #
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
///
|
|
|
|
/// if let Some(any_of) = question.take_any_of() {
|
|
|
|
/// println!("{:?}", any_of);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2020-05-15 22:01:29 +00:00
|
|
|
fn take_any_of(&mut self) -> Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.question_mut().any_of.take()
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Delete the any_of field from the current activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # fn main() -> Result<(), anyhow::Error> {
|
|
|
|
/// # use activitystreams_new::{activity::Question, primitives::XsdAnyUri};
|
2020-05-17 20:04:10 +00:00
|
|
|
/// # let mut question = Question::new();
|
2020-05-17 17:17:09 +00:00
|
|
|
/// # question.set_any_of("https://example.com".parse::<XsdAnyUri>()?);
|
|
|
|
/// #
|
|
|
|
/// use activitystreams_new::prelude::*;
|
|
|
|
///
|
|
|
|
/// assert!(question.any_of().is_some());
|
|
|
|
/// question.delete_any_of();
|
|
|
|
/// assert!(question.any_of().is_none());
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-05-15 03:18:34 +00:00
|
|
|
fn delete_any_of(&mut self) -> &mut Self {
|
|
|
|
self.question_mut().any_of = None;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Indicates that the actor accepts the object.
|
|
|
|
///
|
|
|
|
/// The target property can be used in certain circumstances to indicate the context into which the
|
|
|
|
/// object has been accepted.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<AcceptType>` because there's no fields inherent to
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Accept that aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Accept = ActorAndObject<AcceptType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Indicates that the actor has added the object to the target.
|
|
|
|
///
|
|
|
|
/// If the target property is not explicitly specified, the target would need to be determined
|
|
|
|
/// implicitly by context. The origin can be used to identify the context from which the object originated.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<AddType>` because there's no fields inherent to
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Add that aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Add = ActorAndObject<AddType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Indicates that the actor is blocking the object.
|
|
|
|
///
|
|
|
|
/// Blocking is a stronger form of Ignore. The typical use is to support social systems that allow
|
|
|
|
/// one user to block activities or content of other users. The target and origin typically have no
|
|
|
|
/// defined meaning.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<BlockType>` because there's no fields inherent to
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Block that aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Block = ActorAndObject<BlockType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Indicates that the actor has created the object.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<CreateType>` because there's no fields inherent to
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Create that aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Create = ActorAndObject<CreateType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Indicates that the actor dislikes the object.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<DislikeType>` because there's no fields inherent to
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Dislike that aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Dislike = ActorAndObject<DislikeType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Indicates that the actor is "flagging" the object.
|
|
|
|
///
|
|
|
|
/// Flagging is defined in the sense common to many social platforms as reporting content as being
|
|
|
|
/// inappropriate for any number of reasons.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<FlagType>` because there's no fields inherent to
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Flag that aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Flag = ActorAndObject<FlagType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Indicates that the actor is "following" the object.
|
|
|
|
///
|
|
|
|
/// Following is defined in the sense typically used within Social systems in which the actor is
|
|
|
|
/// interested in any activity performed by or on the object. The target and origin typically have
|
|
|
|
/// no defined meaning.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<FollowType>` because there's no fields inherent to Follow
|
2020-05-17 19:35:10 +00:00
|
|
|
/// that aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Follow = ActorAndObject<FollowType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Indicates that the actor is ignoring the object.
|
|
|
|
///
|
|
|
|
/// The target and origin typically have no defined meaning.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<IgnoreType>` because there's no fields inherent to Ignore
|
2020-05-17 19:35:10 +00:00
|
|
|
/// that aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Ignore = ActorAndObject<IgnoreType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Indicates that the actor has joined the object.
|
|
|
|
///
|
|
|
|
/// The target and origin typically have no defined meaning
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<JoinType>` because there's no fields inherent to Join that
|
2020-05-17 19:35:10 +00:00
|
|
|
/// aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Join = ActorAndObject<JoinType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Indicates that the actor has left the object.
|
|
|
|
///
|
|
|
|
/// The target and origin typically have no meaning.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<LeaveType>` because there's no fields inherent to Leave that
|
2020-05-17 19:35:10 +00:00
|
|
|
/// aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Leave = ActorAndObject<LeaveType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Indicates that the actor likes, recommends or endorses the object.
|
|
|
|
///
|
|
|
|
/// The target and origin typically have no defined meaning.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<LikeType>` because there's no fields inherent to Like that
|
2020-05-17 19:35:10 +00:00
|
|
|
/// aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Like = ActorAndObject<LikeType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Indicates that the actor has listened to the object.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<ListenType>` because there's no fields inherent to Listen
|
2020-05-17 19:35:10 +00:00
|
|
|
/// that aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Listen = ActorAndObject<ListenType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Indicates that the actor has read the object.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<ReadType>` because there's no fields inherent to Read that
|
2020-05-17 19:35:10 +00:00
|
|
|
/// aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Read = ActorAndObject<ReadType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Indicates that the actor is rejecting the object.
|
|
|
|
///
|
|
|
|
/// The target and origin typically have no defined meaning.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<RejectType>` because there's no fields inherent to Reject
|
2020-05-17 19:35:10 +00:00
|
|
|
/// that aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Reject = ActorAndObject<RejectType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// A specialization of Accept indicating that the acceptance is tentative.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<TentativeAcceptType>` because there's no fields inherent to
|
2020-05-17 19:35:10 +00:00
|
|
|
/// TentativeAccept that aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type TentativeAccept = ActorAndObject<TentativeAcceptType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// A specialization of Reject in which the rejection is considered tentative.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<TentativeRejectType>` because there's no fields inherent to
|
2020-05-17 19:35:10 +00:00
|
|
|
/// TentativeReject that aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type TentativeReject = ActorAndObject<TentativeRejectType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Indicates that the actor is undoing the object.
|
|
|
|
///
|
|
|
|
/// In most cases, the object will be an Activity describing some previously performed action (for
|
|
|
|
/// instance, a person may have previously "liked" an article but, for whatever reason, might
|
|
|
|
/// choose to undo that like at some later point in time).
|
|
|
|
///
|
|
|
|
/// The target and origin typically have no defined meaning.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<UndoType>` because there's no fields inherent to
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Undo that aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Undo = ActorAndObject<UndoType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Indicates that the actor has updated the object.
|
|
|
|
///
|
|
|
|
/// Note, however, that this vocabulary does not define a mechanism for describing the actual set
|
|
|
|
/// of modifications made to object.
|
|
|
|
///
|
|
|
|
/// The target and origin typically have no defined meaning.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<UpdateType>` because there's no fields inherent to
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Update that aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Update = ActorAndObject<UpdateType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Indicates that the actor has viewed the object.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<ViewType>` because there's no fields inherent to
|
2020-05-17 19:35:10 +00:00
|
|
|
/// View that aren't already present on an ActorAndObject.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type View = ActorAndObject<ViewType>;
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Indicates that the actor is calling the target's attention the object.
|
|
|
|
///
|
|
|
|
/// The origin typically has no defined meaning.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<AnnounceType>` because there's no fields inherent to
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Announce that aren't already present on an ActorAndObjectOptTarget.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Announce = ActorAndObjectOptTarget<AnnounceType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Indicates that the actor is offering the object.
|
|
|
|
///
|
|
|
|
/// If specified, the target indicates the entity to which the object is being offered.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<OfferType>` because there's no fields inherent to
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Offer that aren't already present on an ActorAndObjectOptTarget.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Offer = ActorAndObjectOptTarget<OfferType>;
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Indicates that the actor has moved object from origin to target.
|
|
|
|
///
|
|
|
|
/// If the origin or target are not specified, either can be determined by context.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<MoveType>` because there's no fields inherent to
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Move that aren't already present on an ActorAndObjectOptOriginAndTarget.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Move = ActorAndObjectOptOriginAndTarget<MoveType>;
|
2020-05-17 17:17:09 +00:00
|
|
|
|
|
|
|
/// Indicates that the actor is removing the object.
|
|
|
|
///
|
|
|
|
/// If specified, the origin indicates the context from which the object is being removed.
|
|
|
|
///
|
|
|
|
/// This is just an alias for `Object<RemoveType>` because there's no fields inherent to
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Remove that aren't already present on an ActorAndObjectOptOriginAndTarget.
|
2020-05-14 03:54:50 +00:00
|
|
|
pub type Remove = ActorAndObjectOptOriginAndTarget<RemoveType>;
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Activity objects are specializations of the base Object type that provide information about
|
|
|
|
/// actions that have either already occurred, are in the process of occurring, or may occur in the
|
|
|
|
/// future.
|
2020-05-17 20:04:10 +00:00
|
|
|
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Activity<Kind> {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Describes the result of the activity.
|
|
|
|
///
|
|
|
|
/// For instance, if a particular action results in the creation of a new resource, the result
|
|
|
|
/// property can be used to describe that new resource.
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Funcitonal: false
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(default, setter(strip_option, into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub result: Option<OneOrMany<AnyBase>>,
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Identifies one or more objects used (or to be used) in the completion of an Activity.
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Funcitonal: false
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(default, setter(strip_option, into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub instrument: Option<OneOrMany<AnyBase>>,
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// base fields and unparsed json ends up here
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(flatten)]
|
|
|
|
pub inner: Object<Kind>,
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Activity with actor and object properties
|
2020-05-14 16:23:38 +00:00
|
|
|
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct ActorAndObject<Kind> {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Describes one or more entities that either performed or are expected to perform the
|
|
|
|
/// activity.
|
|
|
|
///
|
|
|
|
/// Any single activity can have multiple actors. The actor MAY be specified using an indirect
|
|
|
|
/// Link.
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(setter(into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub actor: OneOrMany<AnyBase>,
|
2020-05-14 16:23:38 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// When used within an Activity, describes the direct object of the activity.
|
|
|
|
///
|
|
|
|
/// For instance, in the activity "John added a movie to his wishlist", the object of the
|
|
|
|
/// activity is the movie added.
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(setter(into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub object: OneOrMany<AnyBase>,
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// base fields and unparsed json ends up here
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(flatten)]
|
|
|
|
pub inner: Activity<Kind>,
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// An IntransitiveActivity that indicates that the actor has arrived at the location.
|
|
|
|
///
|
|
|
|
/// The origin can be used to identify the context from which the actor originated. The target
|
|
|
|
/// typically has no defined meaning.
|
2020-05-14 16:23:38 +00:00
|
|
|
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Arrive {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Describes one or more entities that either performed or are expected to perform the
|
|
|
|
/// activity.
|
|
|
|
///
|
|
|
|
/// Any single activity can have multiple actors. The actor MAY be specified using an indirect
|
|
|
|
/// Link.
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(setter(into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub actor: OneOrMany<AnyBase>,
|
2020-05-14 16:23:38 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Describes an indirect object of the activity from which the activity is directed.
|
|
|
|
///
|
|
|
|
/// The precise meaning of the origin is the object of the English preposition "from". For
|
|
|
|
/// instance, in the activity "John moved an item to List B from List A", the origin of the
|
|
|
|
/// activity is "List A".
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(setter(into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub origin: OneOrMany<AnyBase>,
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// base fields and unparsed json ends up here
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(flatten)]
|
|
|
|
pub inner: Activity<ArriveType>,
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// A specialization of Offer in which the actor is extending an invitation for the object to the
|
|
|
|
/// target.
|
2020-05-14 16:23:38 +00:00
|
|
|
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Invite {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Describes one or more entities that either performed or are expected to perform the
|
|
|
|
/// activity.
|
|
|
|
///
|
|
|
|
/// Any single activity can have multiple actors. The actor MAY be specified using an indirect
|
|
|
|
/// Link.
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(setter(into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub actor: OneOrMany<AnyBase>,
|
2020-05-14 16:23:38 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// When used within an Activity, describes the direct object of the activity.
|
|
|
|
///
|
|
|
|
/// For instance, in the activity "John added a movie to his wishlist", the object of the
|
|
|
|
/// activity is the movie added.
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(setter(into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub object: OneOrMany<AnyBase>,
|
2020-05-14 16:23:38 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Describes the indirect object, or target, of the activity.
|
|
|
|
///
|
|
|
|
/// The precise meaning of the target is largely dependent on the type of action being
|
|
|
|
/// described but will often be the object of the English preposition "to". For instance, in
|
|
|
|
/// the activity "John added a movie to his wishlist", the target of the activity is John's
|
|
|
|
/// wishlist. An activity can have more than one target
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(setter(into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub target: OneOrMany<AnyBase>,
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// base fields and unparsed json ends up here
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(flatten)]
|
|
|
|
pub inner: Activity<InviteType>,
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Indicates that the actor has deleted the object.
|
|
|
|
///
|
|
|
|
/// If specified, the origin indicates the context from which the object was deleted.
|
2020-05-14 16:23:38 +00:00
|
|
|
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Delete {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Describes one or more entities that either performed or are expected to perform the
|
|
|
|
/// activity.
|
|
|
|
///
|
|
|
|
/// Any single activity can have multiple actors. The actor MAY be specified using an indirect
|
|
|
|
/// Link.
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(setter(into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub actor: OneOrMany<AnyBase>,
|
2020-05-14 16:23:38 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// When used within an Activity, describes the direct object of the activity.
|
|
|
|
///
|
|
|
|
/// For instance, in the activity "John added a movie to his wishlist", the object of the
|
|
|
|
/// activity is the movie added.
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(setter(into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub object: OneOrMany<AnyBase>,
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Describes an indirect object of the activity from which the activity is directed.
|
|
|
|
///
|
|
|
|
/// The precise meaning of the origin is the object of the English preposition "from". For
|
|
|
|
/// instance, in the activity "John moved an item to List B from List A", the origin of the
|
|
|
|
/// activity is "List A".
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(default, setter(strip_option, into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub origin: Option<OneOrMany<AnyBase>>,
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// base fields and unparsed json ends up here
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(flatten)]
|
|
|
|
pub inner: Activity<DeleteType>,
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Activity with actor, object, and optional origin and target properties
|
2020-05-14 16:23:38 +00:00
|
|
|
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct ActorAndObjectOptOriginAndTarget<Kind> {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Describes one or more entities that either performed or are expected to perform the
|
|
|
|
/// activity.
|
|
|
|
///
|
|
|
|
/// Any single activity can have multiple actors. The actor MAY be specified using an indirect
|
|
|
|
/// Link.
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(setter(into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub actor: OneOrMany<AnyBase>,
|
2020-05-14 16:23:38 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// When used within an Activity, describes the direct object of the activity.
|
|
|
|
///
|
|
|
|
/// For instance, in the activity "John added a movie to his wishlist", the object of the
|
|
|
|
/// activity is the movie added.
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(setter(into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub object: OneOrMany<AnyBase>,
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Describes an indirect object of the activity from which the activity is directed.
|
|
|
|
///
|
|
|
|
/// The precise meaning of the origin is the object of the English preposition "from". For
|
|
|
|
/// instance, in the activity "John moved an item to List B from List A", the origin of the
|
|
|
|
/// activity is "List A".
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(default, setter(strip_option, into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub origin: Option<OneOrMany<AnyBase>>,
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Describes the indirect object, or target, of the activity.
|
|
|
|
///
|
|
|
|
/// The precise meaning of the target is largely dependent on the type of action being
|
|
|
|
/// described but will often be the object of the English preposition "to". For instance, in
|
|
|
|
/// the activity "John added a movie to his wishlist", the target of the activity is John's
|
|
|
|
/// wishlist. An activity can have more than one target
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(default, setter(strip_option, into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub target: Option<OneOrMany<AnyBase>>,
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// base fields and unparsed json ends up here
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(flatten)]
|
|
|
|
pub inner: Activity<Kind>,
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Activity with actor, object, and optional target properties
|
2020-05-14 16:23:38 +00:00
|
|
|
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct ActorAndObjectOptTarget<Kind> {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Describes one or more entities that either performed or are expected to perform the
|
|
|
|
/// activity.
|
|
|
|
///
|
|
|
|
/// Any single activity can have multiple actors. The actor MAY be specified using an indirect
|
|
|
|
/// Link.
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(setter(into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub actor: OneOrMany<AnyBase>,
|
2020-05-14 16:23:38 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// When used within an Activity, describes the direct object of the activity.
|
|
|
|
///
|
|
|
|
/// For instance, in the activity "John added a movie to his wishlist", the object of the
|
|
|
|
/// activity is the movie added.
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(setter(into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub object: OneOrMany<AnyBase>,
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Describes the indirect object, or target, of the activity.
|
|
|
|
///
|
|
|
|
/// The precise meaning of the target is largely dependent on the type of action being
|
|
|
|
/// described but will often be the object of the English preposition "to". For instance, in
|
|
|
|
/// the activity "John added a movie to his wishlist", the target of the activity is John's
|
|
|
|
/// wishlist. An activity can have more than one target
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(default, setter(strip_option, into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub target: Option<OneOrMany<AnyBase>>,
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// base fields and unparsed json ends up here
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(flatten)]
|
|
|
|
pub inner: Activity<Kind>,
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Indicates that the actor is traveling to target from origin.
|
|
|
|
///
|
|
|
|
/// Travel is an IntransitiveObject whose actor specifies the direct object. If the target or
|
|
|
|
/// origin are not specified, either can be determined by context.
|
2020-05-14 16:23:38 +00:00
|
|
|
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Travel {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Describes one or more entities that either performed or are expected to perform the
|
|
|
|
/// activity.
|
|
|
|
///
|
|
|
|
/// Any single activity can have multiple actors. The actor MAY be specified using an indirect
|
|
|
|
/// Link.
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(setter(into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub actor: OneOrMany<AnyBase>,
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Describes an indirect object of the activity from which the activity is directed.
|
|
|
|
///
|
|
|
|
/// The precise meaning of the origin is the object of the English preposition "from". For
|
|
|
|
/// instance, in the activity "John moved an item to List B from List A", the origin of the
|
|
|
|
/// activity is "List A".
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(default, setter(strip_option, into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub origin: Option<OneOrMany<AnyBase>>,
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Describes the indirect object, or target, of the activity.
|
|
|
|
///
|
|
|
|
/// The precise meaning of the target is largely dependent on the type of action being
|
|
|
|
/// described but will often be the object of the English preposition "to". For instance, in
|
|
|
|
/// the activity "John added a movie to his wishlist", the target of the activity is John's
|
|
|
|
/// wishlist. An activity can have more than one target
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(default, setter(strip_option, into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub target: Option<OneOrMany<AnyBase>>,
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// base fields and unparsed json ends up here
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(flatten)]
|
|
|
|
pub inner: Activity<TravelType>,
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Represents a question being asked.
|
|
|
|
///
|
|
|
|
/// Question objects are an extension of IntransitiveActivity. That is, the Question object is an
|
|
|
|
/// Activity, but the direct object is the question itself and therefore it would not contain an
|
|
|
|
/// object property.
|
|
|
|
///
|
|
|
|
/// Either of the anyOf and oneOf properties MAY be used to express possible answers, but a
|
|
|
|
/// Question object MUST NOT have both properties.
|
2020-05-17 20:04:10 +00:00
|
|
|
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Question {
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Identifies an exclusive option for a Question.
|
|
|
|
///
|
|
|
|
/// Use of one_of implies that the Question can have only a single answer. To indicate that a
|
|
|
|
/// Question can have multiple answers, use any_of.
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(default, setter(strip_option, into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub one_of: Option<OneOrMany<AnyBase>>,
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// Identifies an inclusive option for a Question.
|
|
|
|
///
|
|
|
|
/// Use of any_of implies that the Question can have multiple answers. To indicate that a
|
|
|
|
/// Question can have only one answer, use one_of.
|
|
|
|
///
|
|
|
|
/// - Range: Object | Link
|
|
|
|
/// - Functional: false
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-05-14 16:23:38 +00:00
|
|
|
#[builder(default, setter(strip_option, into))]
|
2020-05-15 22:01:29 +00:00
|
|
|
pub any_of: Option<OneOrMany<AnyBase>>,
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-17 17:17:09 +00:00
|
|
|
/// base fields and unparsed json ends up here
|
2020-05-14 03:54:50 +00:00
|
|
|
#[serde(flatten)]
|
|
|
|
pub inner: Activity<QuestionType>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Kind> Activity<Kind> {
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Create a new Activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use activitystreams_new::activity::Activity;
|
|
|
|
///
|
|
|
|
/// let activity = Activity::<String>::new();
|
|
|
|
/// ```
|
|
|
|
pub fn new() -> Self
|
|
|
|
where
|
|
|
|
Kind: Default,
|
|
|
|
{
|
|
|
|
Activity::builder().inner(Object::new()).build()
|
|
|
|
}
|
|
|
|
|
2020-05-14 03:54:50 +00:00
|
|
|
fn extending(mut inner: Object<Kind>) -> Result<Self, serde_json::Error> {
|
|
|
|
let result = inner.remove("result")?;
|
|
|
|
let instrument = inner.remove("instrument")?;
|
|
|
|
|
|
|
|
Ok(Activity {
|
|
|
|
result,
|
|
|
|
instrument,
|
|
|
|
inner,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn retracting(self) -> Result<Object<Kind>, serde_json::Error> {
|
|
|
|
let Activity {
|
|
|
|
result,
|
|
|
|
instrument,
|
|
|
|
mut inner,
|
|
|
|
} = self;
|
|
|
|
|
|
|
|
inner
|
|
|
|
.insert("result", result)?
|
|
|
|
.insert("instrument", instrument)?;
|
|
|
|
|
|
|
|
Ok(inner)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Kind> ActorAndObject<Kind> {
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Create a new ActorAndObject Activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use activitystreams_new::activity::ActorAndObject;
|
|
|
|
///
|
|
|
|
/// let activity = ActorAndObject::<String>::new(vec![], vec![]);
|
|
|
|
/// ```
|
|
|
|
pub fn new<T, U>(actor: T, object: U) -> Self
|
|
|
|
where
|
|
|
|
T: Into<OneOrMany<AnyBase>>,
|
|
|
|
U: Into<OneOrMany<AnyBase>>,
|
|
|
|
Kind: Default,
|
|
|
|
{
|
|
|
|
Self::builder()
|
|
|
|
.actor(actor)
|
|
|
|
.object(object)
|
|
|
|
.inner(Activity::new())
|
|
|
|
.build()
|
|
|
|
}
|
|
|
|
|
2020-05-14 03:54:50 +00:00
|
|
|
fn extending(object: Object<Kind>) -> Result<Self, serde_json::Error> {
|
|
|
|
let mut inner = Activity::extending(object)?;
|
|
|
|
|
|
|
|
let actor = inner.remove("actor")?;
|
|
|
|
let object = inner.remove("object")?;
|
|
|
|
|
|
|
|
Ok(ActorAndObject {
|
|
|
|
actor,
|
|
|
|
object,
|
|
|
|
inner,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn retracting(self) -> Result<Object<Kind>, serde_json::Error> {
|
|
|
|
let ActorAndObject {
|
|
|
|
actor,
|
|
|
|
object,
|
|
|
|
mut inner,
|
|
|
|
} = self;
|
|
|
|
|
|
|
|
inner.insert("actor", actor)?.insert("object", object)?;
|
|
|
|
|
|
|
|
inner.retracting()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Arrive {
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Create a new Arrive Activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use activitystreams_new::activity::Arrive;
|
|
|
|
///
|
|
|
|
/// let activity = Arrive::new(vec![], vec![]);
|
|
|
|
/// ```
|
|
|
|
pub fn new<T, U>(actor: T, origin: U) -> Self
|
|
|
|
where
|
|
|
|
T: Into<OneOrMany<AnyBase>>,
|
|
|
|
U: Into<OneOrMany<AnyBase>>,
|
|
|
|
{
|
|
|
|
Self::builder()
|
|
|
|
.actor(actor)
|
|
|
|
.origin(origin)
|
|
|
|
.inner(Activity::new())
|
|
|
|
.build()
|
|
|
|
}
|
|
|
|
|
2020-05-14 03:54:50 +00:00
|
|
|
fn extending(object: Object<ArriveType>) -> Result<Self, serde_json::Error> {
|
|
|
|
let mut inner = Activity::extending(object)?;
|
|
|
|
|
|
|
|
let actor = inner.remove("actor")?;
|
|
|
|
let origin = inner.remove("origin")?;
|
|
|
|
|
|
|
|
Ok(Arrive {
|
|
|
|
actor,
|
|
|
|
origin,
|
|
|
|
inner,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn retracting(self) -> Result<Object<ArriveType>, serde_json::Error> {
|
|
|
|
let Arrive {
|
|
|
|
actor,
|
|
|
|
origin,
|
|
|
|
mut inner,
|
|
|
|
} = self;
|
|
|
|
|
|
|
|
inner.insert("actor", actor)?.insert("origin", origin)?;
|
|
|
|
|
|
|
|
inner.retracting()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Invite {
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Create a new Invite Activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use activitystreams_new::activity::Invite;
|
|
|
|
///
|
|
|
|
/// let activity = Invite::new(vec![], vec![], vec![]);
|
|
|
|
/// ```
|
|
|
|
pub fn new<T, U, V>(actor: T, object: U, target: V) -> Self
|
|
|
|
where
|
|
|
|
T: Into<OneOrMany<AnyBase>>,
|
|
|
|
U: Into<OneOrMany<AnyBase>>,
|
|
|
|
V: Into<OneOrMany<AnyBase>>,
|
|
|
|
{
|
|
|
|
Self::builder()
|
|
|
|
.actor(actor)
|
|
|
|
.object(object)
|
|
|
|
.target(target)
|
|
|
|
.inner(Activity::new())
|
|
|
|
.build()
|
|
|
|
}
|
|
|
|
|
2020-05-14 03:54:50 +00:00
|
|
|
fn extending(object: Object<InviteType>) -> Result<Self, serde_json::Error> {
|
|
|
|
let mut inner = Activity::extending(object)?;
|
|
|
|
|
|
|
|
let actor = inner.remove("actor")?;
|
|
|
|
let object = inner.remove("object")?;
|
|
|
|
let target = inner.remove("target")?;
|
|
|
|
|
|
|
|
Ok(Invite {
|
|
|
|
actor,
|
|
|
|
object,
|
|
|
|
target,
|
|
|
|
inner,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn retracting(self) -> Result<Object<InviteType>, serde_json::Error> {
|
|
|
|
let Invite {
|
|
|
|
actor,
|
|
|
|
object,
|
|
|
|
target,
|
|
|
|
mut inner,
|
|
|
|
} = self;
|
|
|
|
|
|
|
|
inner
|
|
|
|
.insert("actor", actor)?
|
|
|
|
.insert("object", object)?
|
|
|
|
.insert("target", target)?;
|
|
|
|
|
|
|
|
inner.retracting()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Delete {
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Create a new Delete Activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use activitystreams_new::activity::Delete;
|
|
|
|
///
|
|
|
|
/// let activity = Delete::new(vec![], vec![]);
|
|
|
|
/// ```
|
|
|
|
pub fn new<T, U>(actor: T, object: U) -> Self
|
|
|
|
where
|
|
|
|
T: Into<OneOrMany<AnyBase>>,
|
|
|
|
U: Into<OneOrMany<AnyBase>>,
|
|
|
|
{
|
|
|
|
Self::builder()
|
|
|
|
.actor(actor)
|
|
|
|
.object(object)
|
|
|
|
.inner(Activity::new())
|
|
|
|
.build()
|
|
|
|
}
|
|
|
|
|
2020-05-14 03:54:50 +00:00
|
|
|
fn extending(object: Object<DeleteType>) -> Result<Self, serde_json::Error> {
|
|
|
|
let mut inner = Activity::extending(object)?;
|
|
|
|
|
|
|
|
let actor = inner.remove("actor")?;
|
|
|
|
let object = inner.remove("object")?;
|
|
|
|
let origin = inner.remove("origin")?;
|
|
|
|
|
|
|
|
Ok(Delete {
|
|
|
|
actor,
|
|
|
|
object,
|
|
|
|
origin,
|
|
|
|
inner,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn retracting(self) -> Result<Object<DeleteType>, serde_json::Error> {
|
|
|
|
let Delete {
|
|
|
|
actor,
|
|
|
|
object,
|
|
|
|
origin,
|
|
|
|
mut inner,
|
|
|
|
} = self;
|
|
|
|
|
|
|
|
inner
|
|
|
|
.insert("actor", actor)?
|
|
|
|
.insert("object", object)?
|
|
|
|
.insert("origin", origin)?;
|
|
|
|
|
|
|
|
inner.retracting()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Kind> ActorAndObjectOptOriginAndTarget<Kind> {
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Create a new ActorAndObjectOptOriginAndTarget Activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use activitystreams_new::activity::ActorAndObjectOptOriginAndTarget;
|
|
|
|
///
|
|
|
|
/// let activity = ActorAndObjectOptOriginAndTarget::<String>::new(
|
|
|
|
/// vec![],
|
|
|
|
/// vec![]
|
|
|
|
/// );
|
|
|
|
/// ```
|
|
|
|
pub fn new<T, U>(actor: T, object: U) -> Self
|
|
|
|
where
|
|
|
|
T: Into<OneOrMany<AnyBase>>,
|
|
|
|
U: Into<OneOrMany<AnyBase>>,
|
|
|
|
Kind: Default,
|
|
|
|
{
|
|
|
|
Self::builder()
|
|
|
|
.actor(actor)
|
|
|
|
.object(object)
|
|
|
|
.inner(Activity::new())
|
|
|
|
.build()
|
|
|
|
}
|
|
|
|
|
2020-05-14 03:54:50 +00:00
|
|
|
fn extending(object: Object<Kind>) -> Result<Self, serde_json::Error> {
|
|
|
|
let mut inner = Activity::extending(object)?;
|
|
|
|
|
|
|
|
let actor = inner.remove("actor")?;
|
|
|
|
let object = inner.remove("object")?;
|
|
|
|
let origin = inner.remove("origin")?;
|
|
|
|
let target = inner.remove("target")?;
|
|
|
|
|
|
|
|
Ok(ActorAndObjectOptOriginAndTarget {
|
|
|
|
actor,
|
|
|
|
object,
|
|
|
|
origin,
|
|
|
|
target,
|
|
|
|
inner,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn retracting(self) -> Result<Object<Kind>, serde_json::Error> {
|
|
|
|
let ActorAndObjectOptOriginAndTarget {
|
|
|
|
actor,
|
|
|
|
object,
|
|
|
|
origin,
|
|
|
|
target,
|
|
|
|
mut inner,
|
|
|
|
} = self;
|
|
|
|
|
|
|
|
inner
|
|
|
|
.insert("actor", actor)?
|
|
|
|
.insert("object", object)?
|
|
|
|
.insert("origin", origin)?
|
|
|
|
.insert("target", target)?;
|
|
|
|
|
|
|
|
inner.retracting()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Kind> ActorAndObjectOptTarget<Kind> {
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Create a new ActorAndObjectOptTarget Activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use activitystreams_new::activity::ActorAndObjectOptTarget;
|
|
|
|
///
|
|
|
|
/// let activity = ActorAndObjectOptTarget::<String>::new(
|
|
|
|
/// vec![],
|
|
|
|
/// vec![]
|
|
|
|
/// );
|
|
|
|
/// ```
|
|
|
|
pub fn new<T, U>(actor: T, object: U) -> Self
|
|
|
|
where
|
|
|
|
T: Into<OneOrMany<AnyBase>>,
|
|
|
|
U: Into<OneOrMany<AnyBase>>,
|
|
|
|
Kind: Default,
|
|
|
|
{
|
|
|
|
Self::builder()
|
|
|
|
.actor(actor)
|
|
|
|
.object(object)
|
|
|
|
.inner(Activity::new())
|
|
|
|
.build()
|
|
|
|
}
|
|
|
|
|
2020-05-14 03:54:50 +00:00
|
|
|
fn extending(object: Object<Kind>) -> Result<Self, serde_json::Error> {
|
|
|
|
let mut inner = Activity::extending(object)?;
|
|
|
|
|
|
|
|
let actor = inner.remove("actor")?;
|
|
|
|
let object = inner.remove("object")?;
|
|
|
|
let target = inner.remove("target")?;
|
|
|
|
|
|
|
|
Ok(ActorAndObjectOptTarget {
|
|
|
|
actor,
|
|
|
|
object,
|
|
|
|
target,
|
|
|
|
inner,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn retracting(self) -> Result<Object<Kind>, serde_json::Error> {
|
|
|
|
let ActorAndObjectOptTarget {
|
|
|
|
actor,
|
|
|
|
object,
|
|
|
|
target,
|
|
|
|
mut inner,
|
|
|
|
} = self;
|
|
|
|
|
|
|
|
inner
|
|
|
|
.insert("actor", actor)?
|
|
|
|
.insert("object", object)?
|
|
|
|
.insert("target", target)?;
|
|
|
|
|
|
|
|
inner.retracting()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Travel {
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Create a new Travel Activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use activitystreams_new::activity::Travel;
|
|
|
|
///
|
|
|
|
/// let activity = Travel::new(vec![]);
|
|
|
|
/// ```
|
|
|
|
pub fn new<T>(actor: T) -> Self
|
|
|
|
where
|
|
|
|
T: Into<OneOrMany<AnyBase>>,
|
|
|
|
{
|
|
|
|
Self::builder().actor(actor).inner(Activity::new()).build()
|
|
|
|
}
|
|
|
|
|
2020-05-14 03:54:50 +00:00
|
|
|
fn extending(object: Object<TravelType>) -> Result<Self, serde_json::Error> {
|
|
|
|
let mut inner = Activity::extending(object)?;
|
|
|
|
|
|
|
|
let actor = inner.remove("actor")?;
|
|
|
|
let origin = inner.remove("origin")?;
|
|
|
|
let target = inner.remove("target")?;
|
|
|
|
|
|
|
|
Ok(Travel {
|
|
|
|
actor,
|
|
|
|
origin,
|
|
|
|
target,
|
|
|
|
inner,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn retracting(self) -> Result<Object<TravelType>, serde_json::Error> {
|
|
|
|
let Travel {
|
|
|
|
actor,
|
|
|
|
origin,
|
|
|
|
target,
|
|
|
|
mut inner,
|
|
|
|
} = self;
|
|
|
|
|
|
|
|
inner
|
|
|
|
.insert("actor", actor)?
|
|
|
|
.insert("origin", origin)?
|
|
|
|
.insert("target", target)?;
|
|
|
|
|
|
|
|
inner.retracting()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Question {
|
2020-05-17 19:35:10 +00:00
|
|
|
/// Create a new Question Activity
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use activitystreams_new::activity::Question;
|
|
|
|
///
|
|
|
|
/// let activity = Question::new();
|
|
|
|
/// ```
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Question::builder().inner(Activity::new()).build()
|
|
|
|
}
|
|
|
|
|
2020-05-14 03:54:50 +00:00
|
|
|
fn extending(object: Object<QuestionType>) -> Result<Self, serde_json::Error> {
|
|
|
|
let mut inner = Activity::extending(object)?;
|
|
|
|
|
|
|
|
let one_of = inner.remove("oneOf")?;
|
|
|
|
let any_of = inner.remove("anyOf")?;
|
|
|
|
|
|
|
|
Ok(Question {
|
|
|
|
one_of,
|
|
|
|
any_of,
|
|
|
|
inner,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn retracting(self) -> Result<Object<QuestionType>, serde_json::Error> {
|
|
|
|
let Question {
|
|
|
|
one_of,
|
|
|
|
any_of,
|
|
|
|
mut inner,
|
|
|
|
} = self;
|
|
|
|
|
|
|
|
inner.insert("oneOf", one_of)?.insert("anyOf", any_of)?;
|
|
|
|
|
|
|
|
inner.retracting()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl<Kind> markers::Base for Activity<Kind> {}
|
|
|
|
impl<Kind> markers::Object for Activity<Kind> {}
|
|
|
|
impl<Kind> markers::Activity for Activity<Kind> {}
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl<Kind> markers::Base for ActorAndObject<Kind> {}
|
|
|
|
impl<Kind> markers::Object for ActorAndObject<Kind> {}
|
|
|
|
impl<Kind> markers::Activity for ActorAndObject<Kind> {}
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl<Kind> markers::Base for ActorAndObjectOptTarget<Kind> {}
|
|
|
|
impl<Kind> markers::Object for ActorAndObjectOptTarget<Kind> {}
|
|
|
|
impl<Kind> markers::Activity for ActorAndObjectOptTarget<Kind> {}
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl<Kind> markers::Base for ActorAndObjectOptOriginAndTarget<Kind> {}
|
|
|
|
impl<Kind> markers::Object for ActorAndObjectOptOriginAndTarget<Kind> {}
|
|
|
|
impl<Kind> markers::Activity for ActorAndObjectOptOriginAndTarget<Kind> {}
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl markers::Base for Arrive {}
|
|
|
|
impl markers::Object for Arrive {}
|
|
|
|
impl markers::Activity for Arrive {}
|
|
|
|
impl markers::IntransitiveActivity for Arrive {}
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl markers::Base for Invite {}
|
|
|
|
impl markers::Object for Invite {}
|
|
|
|
impl markers::Activity for Invite {}
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl markers::Base for Delete {}
|
|
|
|
impl markers::Object for Delete {}
|
|
|
|
impl markers::Activity for Delete {}
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl markers::Base for Travel {}
|
|
|
|
impl markers::Object for Travel {}
|
|
|
|
impl markers::Activity for Travel {}
|
|
|
|
impl markers::IntransitiveActivity for Travel {}
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl markers::Base for Question {}
|
|
|
|
impl markers::Object for Question {}
|
|
|
|
impl markers::Activity for Question {}
|
|
|
|
impl markers::IntransitiveActivity for Question {}
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl<Inner> markers::Activity for ApObject<Inner> where Inner: markers::Activity {}
|
|
|
|
impl<Inner> markers::IntransitiveActivity for ApObject<Inner> where
|
|
|
|
Inner: markers::IntransitiveActivity
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-05-21 19:07:35 +00:00
|
|
|
impl<Kind> Extends<Kind> for Activity<Kind> {
|
2020-05-14 03:54:50 +00:00
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn extends(base: Base<Kind>) -> Result<Self, Self::Error> {
|
|
|
|
let inner = Object::extends(base)?;
|
|
|
|
Self::extending(inner)
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn retracts(self) -> Result<Base<Kind>, Self::Error> {
|
|
|
|
let inner = self.retracting()?;
|
|
|
|
inner.retracts()
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Kind> TryFrom<Object<Kind>> for Activity<Kind> {
|
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
|
|
|
fn try_from(object: Object<Kind>) -> Result<Self, Self::Error> {
|
|
|
|
Self::extending(object)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-14 16:23:38 +00:00
|
|
|
impl<Kind> TryFrom<Activity<Kind>> for Object<Kind> {
|
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
|
|
|
fn try_from(activity: Activity<Kind>) -> Result<Self, Self::Error> {
|
|
|
|
activity.retracting()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-21 19:07:35 +00:00
|
|
|
impl<Kind> Extends<Kind> for ActorAndObject<Kind> {
|
2020-05-14 03:54:50 +00:00
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn extends(base: Base<Kind>) -> Result<Self, Self::Error> {
|
|
|
|
let inner = Object::extends(base)?;
|
|
|
|
Self::extending(inner)
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn retracts(self) -> Result<Base<Kind>, Self::Error> {
|
|
|
|
let inner = self.retracting()?;
|
|
|
|
inner.retracts()
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Kind> TryFrom<Object<Kind>> for ActorAndObject<Kind> {
|
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
|
|
|
fn try_from(object: Object<Kind>) -> Result<Self, Self::Error> {
|
|
|
|
Self::extending(object)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-14 16:23:38 +00:00
|
|
|
impl<Kind> TryFrom<ActorAndObject<Kind>> for Object<Kind> {
|
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
|
|
|
fn try_from(activity: ActorAndObject<Kind>) -> Result<Self, Self::Error> {
|
|
|
|
activity.retracting()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl Extends<ArriveType> for Arrive {
|
2020-05-14 03:54:50 +00:00
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn extends(base: Base<ArriveType>) -> Result<Self, Self::Error> {
|
|
|
|
let inner = Object::extends(base)?;
|
|
|
|
Self::extending(inner)
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn retracts(self) -> Result<Base<ArriveType>, Self::Error> {
|
|
|
|
let inner = self.retracting()?;
|
|
|
|
inner.retracts()
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryFrom<Object<ArriveType>> for Arrive {
|
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
|
|
|
fn try_from(object: Object<ArriveType>) -> Result<Self, Self::Error> {
|
|
|
|
Self::extending(object)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-14 16:23:38 +00:00
|
|
|
impl TryFrom<Arrive> for Object<ArriveType> {
|
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
|
|
|
fn try_from(arrive: Arrive) -> Result<Self, Self::Error> {
|
|
|
|
arrive.retracting()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl Extends<InviteType> for Invite {
|
2020-05-14 03:54:50 +00:00
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn extends(base: Base<InviteType>) -> Result<Self, Self::Error> {
|
|
|
|
let inner = Object::extends(base)?;
|
|
|
|
Self::extending(inner)
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn retracts(self) -> Result<Base<InviteType>, Self::Error> {
|
|
|
|
let inner = self.retracting()?;
|
|
|
|
inner.retracts()
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryFrom<Object<InviteType>> for Invite {
|
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
|
|
|
fn try_from(object: Object<InviteType>) -> Result<Self, Self::Error> {
|
|
|
|
Self::extending(object)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-14 16:23:38 +00:00
|
|
|
impl TryFrom<Invite> for Object<InviteType> {
|
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
|
|
|
fn try_from(invite: Invite) -> Result<Self, Self::Error> {
|
|
|
|
invite.retracting()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl Extends<DeleteType> for Delete {
|
2020-05-14 03:54:50 +00:00
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn extends(base: Base<DeleteType>) -> Result<Self, Self::Error> {
|
|
|
|
let inner = Object::extends(base)?;
|
|
|
|
Self::extending(inner)
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn retracts(self) -> Result<Base<DeleteType>, Self::Error> {
|
|
|
|
let inner = self.retracting()?;
|
|
|
|
inner.retracts()
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryFrom<Object<DeleteType>> for Delete {
|
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
|
|
|
fn try_from(object: Object<DeleteType>) -> Result<Self, Self::Error> {
|
|
|
|
Self::extending(object)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-14 16:23:38 +00:00
|
|
|
impl TryFrom<Delete> for Object<DeleteType> {
|
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
|
|
|
fn try_from(delete: Delete) -> Result<Self, Self::Error> {
|
|
|
|
delete.retracting()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-21 19:07:35 +00:00
|
|
|
impl<Kind> Extends<Kind> for ActorAndObjectOptOriginAndTarget<Kind> {
|
2020-05-14 03:54:50 +00:00
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn extends(base: Base<Kind>) -> Result<Self, Self::Error> {
|
|
|
|
let inner = Object::extends(base)?;
|
|
|
|
Self::extending(inner)
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn retracts(self) -> Result<Base<Kind>, Self::Error> {
|
|
|
|
let inner = self.retracting()?;
|
|
|
|
inner.retracts()
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Kind> TryFrom<Object<Kind>> for ActorAndObjectOptOriginAndTarget<Kind> {
|
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
|
|
|
fn try_from(object: Object<Kind>) -> Result<Self, Self::Error> {
|
|
|
|
Self::extending(object)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-14 16:23:38 +00:00
|
|
|
impl<Kind> TryFrom<ActorAndObjectOptOriginAndTarget<Kind>> for Object<Kind> {
|
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
|
|
|
fn try_from(activity: ActorAndObjectOptOriginAndTarget<Kind>) -> Result<Self, Self::Error> {
|
|
|
|
activity.retracting()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-21 19:07:35 +00:00
|
|
|
impl<Kind> Extends<Kind> for ActorAndObjectOptTarget<Kind> {
|
2020-05-14 03:54:50 +00:00
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn extends(base: Base<Kind>) -> Result<Self, Self::Error> {
|
|
|
|
let inner = Object::extends(base)?;
|
|
|
|
Self::extending(inner)
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn retracts(self) -> Result<Base<Kind>, Self::Error> {
|
|
|
|
let inner = self.retracting()?;
|
|
|
|
inner.retracts()
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Kind> TryFrom<Object<Kind>> for ActorAndObjectOptTarget<Kind> {
|
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
|
|
|
fn try_from(object: Object<Kind>) -> Result<Self, Self::Error> {
|
|
|
|
Self::extending(object)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-14 16:23:38 +00:00
|
|
|
impl<Kind> TryFrom<ActorAndObjectOptTarget<Kind>> for Object<Kind> {
|
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
|
|
|
fn try_from(activity: ActorAndObjectOptTarget<Kind>) -> Result<Self, Self::Error> {
|
|
|
|
activity.retracting()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl Extends<TravelType> for Travel {
|
2020-05-14 03:54:50 +00:00
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn extends(base: Base<TravelType>) -> Result<Self, Self::Error> {
|
|
|
|
let inner = Object::extends(base)?;
|
|
|
|
Self::extending(inner)
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn retracts(self) -> Result<Base<TravelType>, Self::Error> {
|
|
|
|
let inner = self.retracting()?;
|
|
|
|
inner.retracts()
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryFrom<Object<TravelType>> for Travel {
|
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
|
|
|
fn try_from(object: Object<TravelType>) -> Result<Self, Self::Error> {
|
|
|
|
Self::extending(object)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-14 16:23:38 +00:00
|
|
|
impl TryFrom<Travel> for Object<TravelType> {
|
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
|
|
|
fn try_from(travel: Travel) -> Result<Self, Self::Error> {
|
|
|
|
travel.retracting()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl Extends<QuestionType> for Question {
|
2020-05-14 03:54:50 +00:00
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn extends(base: Base<QuestionType>) -> Result<Self, Self::Error> {
|
|
|
|
let inner = Object::extends(base)?;
|
|
|
|
Self::extending(inner)
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn retracts(self) -> Result<Base<QuestionType>, Self::Error> {
|
|
|
|
let inner = self.retracting()?;
|
|
|
|
inner.retracts()
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryFrom<Object<QuestionType>> for Question {
|
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
|
|
|
fn try_from(object: Object<QuestionType>) -> Result<Self, Self::Error> {
|
|
|
|
Self::extending(object)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-14 16:23:38 +00:00
|
|
|
impl TryFrom<Question> for Object<QuestionType> {
|
|
|
|
type Error = serde_json::Error;
|
|
|
|
|
|
|
|
fn try_from(question: Question) -> Result<Self, Self::Error> {
|
|
|
|
question.retracting()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 03:18:34 +00:00
|
|
|
impl<Kind> UnparsedMut for Activity<Kind> {
|
2020-05-14 03:54:50 +00:00
|
|
|
fn unparsed_mut(&mut self) -> &mut Unparsed {
|
|
|
|
self.inner.unparsed_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 03:18:34 +00:00
|
|
|
impl<Kind> UnparsedMut for ActorAndObject<Kind> {
|
|
|
|
fn unparsed_mut(&mut self) -> &mut Unparsed {
|
|
|
|
self.inner.unparsed_mut()
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
2020-05-15 03:18:34 +00:00
|
|
|
}
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-15 03:18:34 +00:00
|
|
|
impl UnparsedMut for Arrive {
|
2020-05-14 03:54:50 +00:00
|
|
|
fn unparsed_mut(&mut self) -> &mut Unparsed {
|
|
|
|
self.inner.unparsed_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 03:18:34 +00:00
|
|
|
impl UnparsedMut for Invite {
|
|
|
|
fn unparsed_mut(&mut self) -> &mut Unparsed {
|
|
|
|
self.inner.unparsed_mut()
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
2020-05-15 03:18:34 +00:00
|
|
|
}
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-15 03:18:34 +00:00
|
|
|
impl UnparsedMut for Delete {
|
2020-05-14 03:54:50 +00:00
|
|
|
fn unparsed_mut(&mut self) -> &mut Unparsed {
|
|
|
|
self.inner.unparsed_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 03:18:34 +00:00
|
|
|
impl<Kind> UnparsedMut for ActorAndObjectOptOriginAndTarget<Kind> {
|
|
|
|
fn unparsed_mut(&mut self) -> &mut Unparsed {
|
|
|
|
self.inner.unparsed_mut()
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
2020-05-15 03:18:34 +00:00
|
|
|
}
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-15 03:18:34 +00:00
|
|
|
impl<Kind> UnparsedMut for ActorAndObjectOptTarget<Kind> {
|
2020-05-14 03:54:50 +00:00
|
|
|
fn unparsed_mut(&mut self) -> &mut Unparsed {
|
|
|
|
self.inner.unparsed_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 03:18:34 +00:00
|
|
|
impl UnparsedMut for Travel {
|
|
|
|
fn unparsed_mut(&mut self) -> &mut Unparsed {
|
|
|
|
self.inner.unparsed_mut()
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
2020-05-15 03:18:34 +00:00
|
|
|
}
|
2020-05-14 03:54:50 +00:00
|
|
|
|
2020-05-15 03:18:34 +00:00
|
|
|
impl UnparsedMut for Question {
|
2020-05-14 03:54:50 +00:00
|
|
|
fn unparsed_mut(&mut self) -> &mut Unparsed {
|
|
|
|
self.inner.unparsed_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl<Kind> AsBase<Kind> for Activity<Kind> {
|
|
|
|
fn base_ref(&self) -> &Base<Kind> {
|
|
|
|
self.inner.base_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn base_mut(&mut self) -> &mut Base<Kind> {
|
|
|
|
self.inner.base_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Kind> AsObject<Kind> for Activity<Kind> {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn object_ref(&self) -> &Object<Kind> {
|
|
|
|
&self.inner
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
|
2020-05-15 03:18:34 +00:00
|
|
|
fn object_mut(&mut self) -> &mut Object<Kind> {
|
|
|
|
&mut self.inner
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl<Kind> AsActivity<Kind> for Activity<Kind> {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn activity_ref(&self) -> &Activity<Kind> {
|
|
|
|
self
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
|
2020-05-15 03:18:34 +00:00
|
|
|
fn activity_mut(&mut self) -> &mut Activity<Kind> {
|
|
|
|
self
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl<Kind> AsBase<Kind> for ActorAndObject<Kind> {
|
|
|
|
fn base_ref(&self) -> &Base<Kind> {
|
|
|
|
self.inner.base_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn base_mut(&mut self) -> &mut Base<Kind> {
|
|
|
|
self.inner.base_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Kind> AsObject<Kind> for ActorAndObject<Kind> {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn object_ref(&self) -> &Object<Kind> {
|
|
|
|
self.inner.object_ref()
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
|
2020-05-15 03:18:34 +00:00
|
|
|
fn object_mut(&mut self) -> &mut Object<Kind> {
|
|
|
|
self.inner.object_mut()
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl<Kind> AsActivity<Kind> for ActorAndObject<Kind> {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn activity_ref(&self) -> &Activity<Kind> {
|
|
|
|
&self.inner
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
|
2020-05-15 03:18:34 +00:00
|
|
|
fn activity_mut(&mut self) -> &mut Activity<Kind> {
|
|
|
|
&mut self.inner
|
2020-05-14 03:54:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 03:18:34 +00:00
|
|
|
impl<Kind> ActorAndObjectRef for ActorAndObject<Kind> {
|
2020-05-15 22:01:29 +00:00
|
|
|
fn actor_field_ref(&self) -> &OneOrMany<AnyBase> {
|
2020-05-14 03:54:50 +00:00
|
|
|
&self.actor
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn object_field_ref(&self) -> &OneOrMany<AnyBase> {
|
2020-05-14 03:54:50 +00:00
|
|
|
&self.object
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn actor_field_mut(&mut self) -> &mut OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&mut self.actor
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn object_field_mut(&mut self) -> &mut OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&mut self.object
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl<Kind> AsBase<Kind> for ActorAndObjectOptTarget<Kind> {
|
|
|
|
fn base_ref(&self) -> &Base<Kind> {
|
|
|
|
self.inner.base_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn base_mut(&mut self) -> &mut Base<Kind> {
|
|
|
|
self.inner.base_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Kind> AsObject<Kind> for ActorAndObjectOptTarget<Kind> {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn object_ref(&self) -> &Object<Kind> {
|
|
|
|
self.inner.object_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn object_mut(&mut self) -> &mut Object<Kind> {
|
|
|
|
self.inner.object_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl<Kind> AsActivity<Kind> for ActorAndObjectOptTarget<Kind> {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn activity_ref(&self) -> &Activity<Kind> {
|
|
|
|
&self.inner
|
|
|
|
}
|
|
|
|
|
|
|
|
fn activity_mut(&mut self) -> &mut Activity<Kind> {
|
|
|
|
&mut self.inner
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Kind> ActorAndObjectRef for ActorAndObjectOptTarget<Kind> {
|
2020-05-15 22:01:29 +00:00
|
|
|
fn actor_field_ref(&self) -> &OneOrMany<AnyBase> {
|
2020-05-14 03:54:50 +00:00
|
|
|
&self.actor
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn object_field_ref(&self) -> &OneOrMany<AnyBase> {
|
2020-05-14 03:54:50 +00:00
|
|
|
&self.object
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn actor_field_mut(&mut self) -> &mut OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&mut self.actor
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn object_field_mut(&mut self) -> &mut OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&mut self.object
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Kind> OptTargetRef for ActorAndObjectOptTarget<Kind> {
|
2020-05-15 22:01:29 +00:00
|
|
|
fn target_field_ref(&self) -> &Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&self.target
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn target_field_mut(&mut self) -> &mut Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&mut self.target
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl<Kind> AsBase<Kind> for ActorAndObjectOptOriginAndTarget<Kind> {
|
|
|
|
fn base_ref(&self) -> &Base<Kind> {
|
|
|
|
self.inner.base_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn base_mut(&mut self) -> &mut Base<Kind> {
|
|
|
|
self.inner.base_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Kind> AsObject<Kind> for ActorAndObjectOptOriginAndTarget<Kind> {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn object_ref(&self) -> &Object<Kind> {
|
|
|
|
self.inner.object_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn object_mut(&mut self) -> &mut Object<Kind> {
|
|
|
|
self.inner.object_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl<Kind> AsActivity<Kind> for ActorAndObjectOptOriginAndTarget<Kind> {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn activity_ref(&self) -> &Activity<Kind> {
|
|
|
|
&self.inner
|
|
|
|
}
|
|
|
|
|
|
|
|
fn activity_mut(&mut self) -> &mut Activity<Kind> {
|
|
|
|
&mut self.inner
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Kind> ActorAndObjectRef for ActorAndObjectOptOriginAndTarget<Kind> {
|
2020-05-15 22:01:29 +00:00
|
|
|
fn actor_field_ref(&self) -> &OneOrMany<AnyBase> {
|
2020-05-14 03:54:50 +00:00
|
|
|
&self.actor
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn object_field_ref(&self) -> &OneOrMany<AnyBase> {
|
2020-05-14 03:54:50 +00:00
|
|
|
&self.object
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn actor_field_mut(&mut self) -> &mut OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&mut self.actor
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn object_field_mut(&mut self) -> &mut OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&mut self.object
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Kind> OptTargetRef for ActorAndObjectOptOriginAndTarget<Kind> {
|
2020-05-15 22:01:29 +00:00
|
|
|
fn target_field_ref(&self) -> &Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&self.target
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn target_field_mut(&mut self) -> &mut Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&mut self.target
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Kind> OptOriginRef for ActorAndObjectOptOriginAndTarget<Kind> {
|
2020-05-15 22:01:29 +00:00
|
|
|
fn origin_field_ref(&self) -> &Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&self.origin
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn origin_field_mut(&mut self) -> &mut Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&mut self.origin
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl AsBase<ArriveType> for Arrive {
|
|
|
|
fn base_ref(&self) -> &Base<ArriveType> {
|
|
|
|
self.inner.base_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn base_mut(&mut self) -> &mut Base<ArriveType> {
|
|
|
|
self.inner.base_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsObject<ArriveType> for Arrive {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn object_ref(&self) -> &Object<ArriveType> {
|
|
|
|
self.inner.object_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn object_mut(&mut self) -> &mut Object<ArriveType> {
|
|
|
|
self.inner.object_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl AsActivity<ArriveType> for Arrive {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn activity_ref(&self) -> &Activity<ArriveType> {
|
|
|
|
&self.inner
|
|
|
|
}
|
|
|
|
|
|
|
|
fn activity_mut(&mut self) -> &mut Activity<ArriveType> {
|
|
|
|
&mut self.inner
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl OriginRef for Arrive {
|
2020-05-15 22:01:29 +00:00
|
|
|
fn origin_field_ref(&self) -> &OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&self.origin
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn origin_field_mut(&mut self) -> &mut OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&mut self.origin
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl AsBase<InviteType> for Invite {
|
|
|
|
fn base_ref(&self) -> &Base<InviteType> {
|
|
|
|
self.inner.base_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn base_mut(&mut self) -> &mut Base<InviteType> {
|
|
|
|
self.inner.base_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsObject<InviteType> for Invite {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn object_ref(&self) -> &Object<InviteType> {
|
|
|
|
self.inner.object_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn object_mut(&mut self) -> &mut Object<InviteType> {
|
|
|
|
self.inner.object_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl AsActivity<InviteType> for Invite {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn activity_ref(&self) -> &Activity<InviteType> {
|
|
|
|
&self.inner
|
|
|
|
}
|
|
|
|
|
|
|
|
fn activity_mut(&mut self) -> &mut Activity<InviteType> {
|
|
|
|
&mut self.inner
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ActorAndObjectRef for Invite {
|
2020-05-15 22:01:29 +00:00
|
|
|
fn actor_field_ref(&self) -> &OneOrMany<AnyBase> {
|
2020-05-14 03:54:50 +00:00
|
|
|
&self.actor
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn object_field_ref(&self) -> &OneOrMany<AnyBase> {
|
2020-05-14 03:54:50 +00:00
|
|
|
&self.object
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn actor_field_mut(&mut self) -> &mut OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&mut self.actor
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn object_field_mut(&mut self) -> &mut OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&mut self.object
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TargetRef for Invite {
|
2020-05-15 22:01:29 +00:00
|
|
|
fn target_field_ref(&self) -> &OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&self.target
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn target_field_mut(&mut self) -> &mut OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&mut self.target
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl AsBase<DeleteType> for Delete {
|
|
|
|
fn base_ref(&self) -> &Base<DeleteType> {
|
|
|
|
self.inner.base_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn base_mut(&mut self) -> &mut Base<DeleteType> {
|
|
|
|
self.inner.base_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsObject<DeleteType> for Delete {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn object_ref(&self) -> &Object<DeleteType> {
|
|
|
|
self.inner.object_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn object_mut(&mut self) -> &mut Object<DeleteType> {
|
|
|
|
self.inner.object_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl AsActivity<DeleteType> for Delete {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn activity_ref(&self) -> &Activity<DeleteType> {
|
|
|
|
&self.inner
|
|
|
|
}
|
|
|
|
|
|
|
|
fn activity_mut(&mut self) -> &mut Activity<DeleteType> {
|
|
|
|
&mut self.inner
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ActorAndObjectRef for Delete {
|
2020-05-15 22:01:29 +00:00
|
|
|
fn actor_field_ref(&self) -> &OneOrMany<AnyBase> {
|
2020-05-14 03:54:50 +00:00
|
|
|
&self.actor
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn object_field_ref(&self) -> &OneOrMany<AnyBase> {
|
2020-05-14 03:54:50 +00:00
|
|
|
&self.object
|
|
|
|
}
|
2020-05-15 03:18:34 +00:00
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn actor_field_mut(&mut self) -> &mut OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&mut self.actor
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn object_field_mut(&mut self) -> &mut OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&mut self.object
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl OptOriginRef for Delete {
|
2020-05-15 22:01:29 +00:00
|
|
|
fn origin_field_ref(&self) -> &Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&self.origin
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn origin_field_mut(&mut self) -> &mut Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&mut self.origin
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl AsBase<TravelType> for Travel {
|
|
|
|
fn base_ref(&self) -> &Base<TravelType> {
|
|
|
|
self.inner.base_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn base_mut(&mut self) -> &mut Base<TravelType> {
|
|
|
|
self.inner.base_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsObject<TravelType> for Travel {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn object_ref(&self) -> &Object<TravelType> {
|
|
|
|
self.inner.object_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn object_mut(&mut self) -> &mut Object<TravelType> {
|
|
|
|
self.inner.object_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl AsActivity<TravelType> for Travel {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn activity_ref(&self) -> &Activity<TravelType> {
|
|
|
|
self.inner.activity_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn activity_mut(&mut self) -> &mut Activity<TravelType> {
|
|
|
|
self.inner.activity_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl OptTargetRef for Travel {
|
2020-05-15 22:01:29 +00:00
|
|
|
fn target_field_ref(&self) -> &Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&self.target
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn target_field_mut(&mut self) -> &mut Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&mut self.target
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl OptOriginRef for Travel {
|
2020-05-15 22:01:29 +00:00
|
|
|
fn origin_field_ref(&self) -> &Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&self.origin
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn origin_field_mut(&mut self) -> &mut Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
&mut self.origin
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl AsBase<QuestionType> for Question {
|
|
|
|
fn base_ref(&self) -> &Base<QuestionType> {
|
|
|
|
self.inner.base_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn base_mut(&mut self) -> &mut Base<QuestionType> {
|
|
|
|
self.inner.base_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsObject<QuestionType> for Question {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn object_ref(&self) -> &Object<QuestionType> {
|
|
|
|
self.inner.object_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn object_mut(&mut self) -> &mut Object<QuestionType> {
|
|
|
|
self.inner.object_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl AsActivity<QuestionType> for Question {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn activity_ref(&self) -> &Activity<QuestionType> {
|
|
|
|
&self.inner
|
|
|
|
}
|
|
|
|
|
|
|
|
fn activity_mut(&mut self) -> &mut Activity<QuestionType> {
|
|
|
|
&mut self.inner
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl AsQuestion for Question {
|
2020-05-15 03:18:34 +00:00
|
|
|
fn question_ref(&self) -> &Question {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
fn question_mut(&mut self) -> &mut Question {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl<Inner, Kind> AsActivity<Kind> for ApObject<Inner>
|
2020-05-15 03:18:34 +00:00
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
Inner: AsActivity<Kind>,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
fn activity_ref(&self) -> &Activity<Kind> {
|
|
|
|
self.inner.activity_ref()
|
|
|
|
}
|
2020-05-15 22:01:29 +00:00
|
|
|
|
2020-05-15 03:18:34 +00:00
|
|
|
fn activity_mut(&mut self) -> &mut Activity<Kind> {
|
|
|
|
self.inner.activity_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Inner> ActorAndObjectRef for ApObject<Inner>
|
|
|
|
where
|
|
|
|
Inner: ActorAndObjectRef,
|
|
|
|
{
|
2020-05-15 22:01:29 +00:00
|
|
|
fn actor_field_ref(&self) -> &OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.inner.actor_field_ref()
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn object_field_ref(&self) -> &OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.inner.object_field_ref()
|
|
|
|
}
|
2020-05-15 22:01:29 +00:00
|
|
|
|
|
|
|
fn actor_field_mut(&mut self) -> &mut OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.inner.actor_field_mut()
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
fn object_field_mut(&mut self) -> &mut OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.inner.object_field_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Inner> TargetRef for ApObject<Inner>
|
|
|
|
where
|
|
|
|
Inner: TargetRef,
|
|
|
|
{
|
2020-05-15 22:01:29 +00:00
|
|
|
fn target_field_ref(&self) -> &OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.inner.target_field_ref()
|
|
|
|
}
|
2020-05-15 22:01:29 +00:00
|
|
|
|
|
|
|
fn target_field_mut(&mut self) -> &mut OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.inner.target_field_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Inner> OriginRef for ApObject<Inner>
|
|
|
|
where
|
|
|
|
Inner: OriginRef,
|
|
|
|
{
|
2020-05-15 22:01:29 +00:00
|
|
|
fn origin_field_ref(&self) -> &OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.inner.origin_field_ref()
|
|
|
|
}
|
2020-05-15 22:01:29 +00:00
|
|
|
|
|
|
|
fn origin_field_mut(&mut self) -> &mut OneOrMany<AnyBase> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.inner.origin_field_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Inner> OptTargetRef for ApObject<Inner>
|
|
|
|
where
|
|
|
|
Inner: OptTargetRef,
|
|
|
|
{
|
2020-05-15 22:01:29 +00:00
|
|
|
fn target_field_ref(&self) -> &Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.inner.target_field_ref()
|
|
|
|
}
|
2020-05-15 22:01:29 +00:00
|
|
|
|
|
|
|
fn target_field_mut(&mut self) -> &mut Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.inner.target_field_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Inner> OptOriginRef for ApObject<Inner>
|
|
|
|
where
|
|
|
|
Inner: OptOriginRef,
|
|
|
|
{
|
2020-05-15 22:01:29 +00:00
|
|
|
fn origin_field_ref(&self) -> &Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.inner.origin_field_ref()
|
|
|
|
}
|
2020-05-15 22:01:29 +00:00
|
|
|
|
|
|
|
fn origin_field_mut(&mut self) -> &mut Option<OneOrMany<AnyBase>> {
|
2020-05-15 03:18:34 +00:00
|
|
|
self.inner.origin_field_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:01:29 +00:00
|
|
|
impl<Inner> AsQuestion for ApObject<Inner>
|
2020-05-15 03:18:34 +00:00
|
|
|
where
|
2020-05-15 22:01:29 +00:00
|
|
|
Inner: AsQuestion,
|
2020-05-15 03:18:34 +00:00
|
|
|
{
|
|
|
|
fn question_ref(&self) -> &Question {
|
|
|
|
self.inner.question_ref()
|
|
|
|
}
|
2020-05-15 22:01:29 +00:00
|
|
|
|
2020-05-15 03:18:34 +00:00
|
|
|
fn question_mut(&mut self) -> &mut Question {
|
|
|
|
self.inner.question_mut()
|
|
|
|
}
|
|
|
|
}
|
2020-05-15 22:01:29 +00:00
|
|
|
|
|
|
|
impl<T, Kind> ActivityExt<Kind> for T where T: AsActivity<Kind> {}
|
|
|
|
impl<T> ActorAndObjectRefExt for T where T: ActorAndObjectRef {}
|
|
|
|
impl<T> TargetRefExt for T where T: TargetRef {}
|
|
|
|
impl<T> OriginRefExt for T where T: OriginRef {}
|
|
|
|
impl<T> OptTargetRefExt for T where T: OptTargetRef {}
|
|
|
|
impl<T> OptOriginRefExt for T where T: OptOriginRef {}
|
|
|
|
impl<T> QuestionExt for T where T: AsQuestion {}
|