本文整理匯總了Golang中github.com/keybase/go-jsonw.Wrapper.SetKey方法的典型用法代碼示例。如果您正苦於以下問題:Golang Wrapper.SetKey方法的具體用法?Golang Wrapper.SetKey怎麽用?Golang Wrapper.SetKey使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/keybase/go-jsonw.Wrapper
的用法示例。
在下文中一共展示了Wrapper.SetKey方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: ToUntrackingStatement
func (u *User) ToUntrackingStatement(w *jsonw.Wrapper) (err error) {
untrack := jsonw.NewDictionary()
untrack.SetKey("basics", u.ToUntrackingStatementBasics())
untrack.SetKey("id", UIDWrapper(u.GetUID()))
w.SetKey("untrack", untrack)
return
}
示例2: remoteProofToTrackingStatement
func remoteProofToTrackingStatement(s RemoteProofChainLink, base *jsonw.Wrapper) error {
typS := s.TableKey()
i, found := RemoteServiceTypes[typS]
if !found {
return fmt.Errorf("No service type found for %q in proof %d", typS, s.GetSeqno())
}
base.AtKey("remote_key_proof").SetKey("proof_type", jsonw.NewInt(int(i)))
base.AtKey("remote_key_proof").SetKey("check_data_json", s.CheckDataJSON())
base.SetKey("sig_type", jsonw.NewInt(SigTypeRemoteProof))
return nil
}
示例3: ToTrackingStatement
func (u *User) ToTrackingStatement(w *jsonw.Wrapper, outcome *IdentifyOutcome) (err error) {
track := jsonw.NewDictionary()
track.SetKey("key", u.ToTrackingStatementKey(&err))
if pgpkeys := u.ToTrackingStatementPGPKeys(&err); pgpkeys != nil {
track.SetKey("pgp_keys", pgpkeys)
}
track.SetKey("seq_tail", u.ToTrackingStatementSeqTail())
track.SetKey("basics", u.ToTrackingStatementBasics(&err))
track.SetKey("id", UIDWrapper(u.id))
track.SetKey("remote_proofs", outcome.TrackingStatement())
if err != nil {
return
}
w.SetKey("track", track)
return
}