activitystreams-types

Crates.ioactivitystreams-types
lib.rsactivitystreams-types
version0.4.0-alpha.0
sourcesrc
created_at2018-05-14 06:22:19.991013
updated_at2020-03-11 13:41:47.657178
descriptionBase types from the Activity Streams spec
homepage
repositoryhttps://git.asonix.dog/Aardwolf/activitystreams
max_upload_size
id65285
size223,634
asonix (asonix)

documentation

README

ActivityStreams Types

A base set of types from the Activity Streams specification.

Usage

First, add the crate to your Cargo.toml

# Cargo.toml

activitystreams-types = "0.4.0-alpha.0"

Then use it in your project!

// in your project

use activitystreams_types::{context, link::Mention};

fn run() -> Result<(), Box<dyn std::error::Error>> {
    /// A Mention is the only predefined Link type in the Activity Streams spec
    let mut mention = Mention::default();
    mention.as_ref().set_context_xsd_any_uri(context())?;

    let mention_string = serde_json::to_string(&mention)?;

    let mention: Mention = serde_json::from_str(&mention_string)?;

    Ok(())
}

Contributing

Feel free to open issues for anything you find an issue with. Please note that any contributed code will be licensed under the GPLv3.

License

Copyright © 2020 Riley Trautman

ActivityStreams Types is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

ActivityStreams Types is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. This file is part of ActivityStreams Types.

You should have received a copy of the GNU General Public License along with ActivityStreams Types. If not, see http://www.gnu.org/licenses/.

Commit count: 0

cargo fmt