photon 0.2.0

Client SDK for Photon
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod accumulator;
mod builder;
pub mod error;
mod run;

pub use builder::RunBuilder;
pub use error::{FinishError, LogError, StartError};
pub use photon_core::types::id::RunId;
pub use photon_protocol::codec::CodecKind;
pub use photon_protocol::compressor::CompressorKind;
pub use run::{Run, RunStats};

impl Run {
    pub fn builder() -> RunBuilder {
        RunBuilder::default()
    }
}