Struct sc_rpc::author::Author  [−][src]
Authoring API
Implementations
impl<P, Client> Author<P, Client>[src]
pub fn new(
    client: Arc<Client>, 
    pool: Arc<P>, 
    subscriptions: SubscriptionManager, 
    keystore: BareCryptoStorePtr, 
    deny_unsafe: DenyUnsafe
) -> Self[src]
client: Arc<Client>,
pool: Arc<P>,
subscriptions: SubscriptionManager,
keystore: BareCryptoStorePtr,
deny_unsafe: DenyUnsafe
) -> Self
Create new instance of Authoring API.
Trait Implementations
impl<P, Client> AuthorApi<<P as TransactionPool>::Hash, <<P as TransactionPool>::Block as Block>::Hash> for Author<P, Client> where
    P: TransactionPool + Sync + Send + 'static,
    Client: HeaderBackend<P::Block> + ProvideRuntimeApi<P::Block> + Send + Sync + 'static,
    Client::Api: SessionKeys<P::Block, Error = ClientError>, [src]
P: TransactionPool + Sync + Send + 'static,
Client: HeaderBackend<P::Block> + ProvideRuntimeApi<P::Block> + Send + Sync + 'static,
Client::Api: SessionKeys<P::Block, Error = ClientError>,
type Metadata = Metadata
RPC metadata
fn insert_key(
    &self, 
    key_type: String, 
    suri: String, 
    public: Bytes
) -> Result<()>[src]
&self,
key_type: String,
suri: String,
public: Bytes
) -> Result<()>
fn rotate_keys(&self) -> Result<Bytes>[src]
fn has_session_keys(&self, session_keys: Bytes) -> Result<bool>[src]
fn has_key(&self, public_key: Bytes, key_type: String) -> Result<bool>[src]
fn submit_extrinsic(&self, ext: Bytes) -> FutureResult<TxHash<P>>[src]
fn pending_extrinsics(&self) -> Result<Vec<Bytes>>[src]
fn remove_extrinsic(
    &self, 
    bytes_or_hash: Vec<ExtrinsicOrHash<TxHash<P>>>
) -> Result<Vec<TxHash<P>>>[src]
&self,
bytes_or_hash: Vec<ExtrinsicOrHash<TxHash<P>>>
) -> Result<Vec<TxHash<P>>>
fn watch_extrinsic(
    &self, 
    _metadata: Self::Metadata, 
    subscriber: Subscriber<TransactionStatus<TxHash<P>, BlockHash<P>>>, 
    xt: Bytes
)[src]
&self,
_metadata: Self::Metadata,
subscriber: Subscriber<TransactionStatus<TxHash<P>, BlockHash<P>>>,
xt: Bytes
)
fn unwatch_extrinsic(
    &self, 
    _metadata: Option<Self::Metadata>, 
    id: SubscriptionId
) -> Result<bool>[src]
&self,
_metadata: Option<Self::Metadata>,
id: SubscriptionId
) -> Result<bool>
pub fn to_delegate(self) -> IoDelegate<Self, Self::Metadata> where
    Hash: Send + Sync + 'static + Serialize + DeserializeOwned,
    BlockHash: Send + Sync + 'static + Serialize, [src]
Hash: Send + Sync + 'static + Serialize + DeserializeOwned,
BlockHash: Send + Sync + 'static + Serialize,
Auto Trait Implementations
impl<P, Client> !RefUnwindSafe for Author<P, Client>
impl<P, Client> Send for Author<P, Client> where
    Client: Send + Sync,
    P: Send + Sync, 
Client: Send + Sync,
P: Send + Sync,
impl<P, Client> Sync for Author<P, Client> where
    Client: Send + Sync,
    P: Send + Sync, 
Client: Send + Sync,
P: Send + Sync,
impl<P, Client> Unpin for Author<P, Client>
impl<P, Client> !UnwindSafe for Author<P, Client>
Blanket Implementations
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> CheckedConversion for T[src]
pub fn checked_from<T>(t: T) -> Option<Self> where
    Self: TryFrom<T>, [src]
Self: TryFrom<T>,
pub fn checked_into<T>(self) -> Option<T> where
    Self: TryInto<T>, [src]
Self: TryInto<T>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T, Outer> IsWrappedBy<Outer> for T where
    T: From<Outer>,
    Outer: AsRef<T> + AsMut<T> + From<T>, [src]
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
pub fn from_ref(outer: &Outer) -> &T[src]
Get a reference to the inner from the outer.
pub fn from_mut(outer: &mut Outer) -> &mut T[src]
Get a mutable reference to the inner from the outer.
impl<T> Pointable for T[src]
pub const ALIGN: usize[src]
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize[src]
pub unsafe fn deref<'a>(ptr: usize) -> &'a T[src]
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T[src]
pub unsafe fn drop(ptr: usize)[src]
impl<T> Same<T> for T[src]
type Output = T
Should always be Self
impl<T> SaturatedConversion for T[src]
pub fn saturated_from<T>(t: T) -> Self where
    Self: UniqueSaturatedFrom<T>, [src]
Self: UniqueSaturatedFrom<T>,
pub fn saturated_into<T>(self) -> T where
    Self: UniqueSaturatedInto<T>, [src]
Self: UniqueSaturatedInto<T>,
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, [src]
T: UncheckedFrom<S>,
pub fn unchecked_into(self) -> T[src]
impl<T, S> UniqueSaturatedInto<T> for S where
    S: TryInto<T>,
    T: Bounded, [src]
S: TryInto<T>,
T: Bounded,
pub fn unique_saturated_into(self) -> T[src]
impl<V, T> VZip<V> for T where
    V: MultiLane<T>, [src]
V: MultiLane<T>,