當前位置: 首頁>>代碼示例>>Golang>>正文


Golang awsutil.Prettify函數代碼示例

本文整理匯總了Golang中github.com/bluet-deps/aws-sdk-go/aws/awsutil.Prettify函數的典型用法代碼示例。如果您正苦於以下問題:Golang Prettify函數的具體用法?Golang Prettify怎麽用?Golang Prettify使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了Prettify函數的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: compareObjects

func compareObjects(t *testing.T, expected interface{}, actual interface{}) {
	if !reflect.DeepEqual(expected, actual) {
		t.Errorf("\nExpected %s:\n%s\nActual %s:\n%s\n",
			reflect.ValueOf(expected).Kind(),
			awsutil.Prettify(expected),
			reflect.ValueOf(actual).Kind(),
			awsutil.Prettify(actual))
	}
}
開發者ID:bluet-deps,項目名稱:aws-sdk-go,代碼行數:9,代碼來源:converter_test.go

示例2: ExampleCopyOf

func ExampleCopyOf() {
	type Foo struct {
		A int
		B []*string
	}

	// Create the initial value
	str1 := "hello"
	str2 := "bye bye"
	f1 := &Foo{A: 1, B: []*string{&str1, &str2}}

	// Do the copy
	v := awsutil.CopyOf(f1)
	var f2 *Foo = v.(*Foo)

	// Print the result
	fmt.Println(awsutil.Prettify(f2))

	// Output:
	// {
	//   A: 1,
	//   B: ["hello","bye bye"]
	// }
}
開發者ID:bluet-deps,項目名稱:aws-sdk-go,代碼行數:24,代碼來源:copy_test.go

示例3: String

// String returns the string representation
func (s CreateTrailInput) String() string {
	return awsutil.Prettify(s)
}
開發者ID:bluet-deps,項目名稱:aws-sdk-go,代碼行數:4,代碼來源:api.go


注:本文中的github.com/bluet-deps/aws-sdk-go/aws/awsutil.Prettify函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。